/* VARIAVEIS */
/* MIXINS */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
html {
  font-size: 100%;
  font-weight: 600;
}

body {
  font-family:
    "Montserrat",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto;
  color: #333333;
}

a {
  text-decoration: none;
}

section:not(.no-padding) {
  padding: 55px 0;
}

.section-title {
  font-weight: bold;
  font-size: 30px;
  line-height: 37px;
  text-align: center;
  color: #65348e;
  margin-bottom: 30px;
  margin-top: 100px;
}

.prog-card {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  margin-bottom: 50px;
  cursor: pointer;
  position: relative;
  z-index: 999;
}
.prog-card .data {
  width: 74px;
  height: 74px;
  position: relative;
  background: rgb(255, 213, 77);
  background: linear-gradient(
    147deg,
    rgb(255, 213, 77) 0%,
    rgb(253, 120, 194) 56%,
    rgb(101, 52, 142) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffd54d",endColorstr="#65348e",GradientType=1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.prog-card .data::after {
  content: "";
  width: 64px;
  height: 64px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 9;
}
.prog-card .data h1 {
  font-weight: bold;
  font-size: 30px;
  line-height: 37px;
  text-align: center;
  color: #65348e;
  position: relative;
  z-index: 10;
  margin: 0;
}
.prog-card .data span {
  color: #65348e;
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  position: relative;
  text-align: center;
  z-index: 10;
}
.prog-card .desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10px;
}
.prog-card .desc h1 {
  font-weight: bold;
  font-size: 20px;
  line-height: 28px;
  color: #65348e;
  margin: 0;
}
.prog-card .desc .ver-prog {
  font-size: 12px;
  line-height: 35px;
  font-weight: bold;
  color: #333333;
}

.empresa-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
}
.empresa-card img {
  max-width: 80%;
  margin-bottom: 15px;
}
.empresa-card h2 {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #65348e;
}
.empresa-card p {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  color: #333333;
  margin-bottom: 3px;
}

.noticia-card {
  margin-bottom: 30px;
}
.noticia-card figure {
  overflow: hidden;
  width: 100%;
}
.noticia-card img {
  width: 100%;
  transition: all 0.3s ease;
}
.noticia-card img:hover {
  transform: scale(1.25);
}
.noticia-card .desc span {
  font-weight: 600;
  font-size: 12px;
  line-height: 35px;
  color: #333333;
}
.noticia-card .desc h2 {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  color: #65348e;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gallery-card {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}
.gallery-card img {
  width: 100%;
}
.gallery-card span {
  font-size: 14px;
}

.compartilhar {
  text-align: right;
  border-top: 1px solid #a0a0a0;
  padding-top: 15px;
}
.compartilhar span {
  font-weight: 600;
  font-size: 14px;
  line-height: 25px;
  margin-right: 10px;
}
.compartilhar svg {
  height: 30px;
  width: 30px;
  color: #a0a0a0;
  margin-right: 5px;
}
.compartilhar svg:hover {
  color: #da1e1c;
}

#cabecalho {
  margin-bottom: 82px;
}
#cabecalho .navbar {
  height: 82px;
  background: #fff;
}
#cabecalho .navbar .navbar-brand img {
  height: 60px;
}
#cabecalho .navbar .nav-item {
  position: relative;
}
#cabecalho .navbar .nav-item:not(.no-underline)::after {
  content: "";
  position: absolute;
  left: 8px;
  bottom: 0;
  height: 7px;
  max-width: 0;
  width: 100%;
  transition: max-width 0.3s ease;
  background: #ffd54d;
}
#cabecalho .navbar .nav-item:hover::after {
  max-width: calc(100% - 15px);
}
#cabecalho .navbar .nav-item + .nav-item {
  margin-left: 30px;
}
#cabecalho .navbar .nav-link {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #65348e;
}
#cabecalho .navbar #navbarNav {
  justify-content: flex-end;
}

#breadcrumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url(../images/2026/bg-claro.jpg);
  margin-bottom: 30px;
  padding: 35px 0 50px 0;
}
#breadcrumb span {
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  text-align: center;
  color: #333333;
  text-align: center;
}
#breadcrumb h1 {
  font-weight: bold;
  font-size: 35px;
  line-height: 43px;
  text-align: center;
  color: #65348e;
}

#modal-root {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9998;
}
#modal-root .modal-header {
  width: 35vw;
  max-width: 700px;
  padding: 10px;
  background: #fff;
  z-index: 9999;
  position: relative;
  display: flex;
  justify-content: flex-end;
}
#modal-root .modal-header button {
  outline: none;
  border: none;
  background: transparent;
  cursor: pointer;
}
#modal-root .modal-header svg {
  height: 30px;
  width: 30px;
  color: #333333;
}
#modal-root .backdrop {
  position: absolute;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  background: rgba(133, 133, 133, 0.541);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#modal-root .modal-body {
  position: relative;
  width: 35vw;
  max-width: 700px;
  max-height: 75vh;
  background: #fff;
  z-index: 9999;
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
#modal-root .prog-card {
  cursor: default;
  flex-wrap: wrap;
}
#modal-root .prog-card .ver-prog {
  display: none;
}
#modal-root .prog-card .details {
  width: 100%;
  margin-top: 15px;
}

#banner {
  position: relative;
  padding: 0;
  text-align: center;
}
#banner img {
  height: 50%;
  margin-inline: auto;
}
#banner .data {
  color: #5e257d;
  margin-block: 10px;
  background: rgb(255, 213, 77);
  padding: 10px 20px;
  text-align: center;
}
#banner .data h1 {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}
#banner .dates {
  position: relative;
  height: 325px;
}
#banner .dates .data {
  max-width: 26rem;
  padding: 2rem 2.5rem;
  text-align: center;
}
#banner .dates .bg-dates-3 {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 999;
  transform: translateX(-50%);
  background-color: #ffd54d;
  width: 1200px;
  height: 225px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #5e257d;
}
#banner .dates .bg-dates-3 h1 {
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  margin: 0;
}
#banner .dates .bg-dates-3 p {
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #5e257d;
  margin: 0.25rem 0;
}
#banner .dates .bg-dates-3 span {
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: #5e257d;
}
#banner .dates .dates-local {
  line-height: 0.5rem;
}
#banner .dates :is(span, h2, p, h3) {
  color: white;
}
#banner .dates h3 {
  font-weight: bold;
}
#banner .dates span {
  display: inline-block;
  font-size: clamp(1.5rem, 1rem + 2vw, 2rem);
  font-weight: bold;
  text-decoration-thickness: 4px;
}
#banner .dates h2 {
  font-size: clamp(1.15rem, 0.75rem + 2.5vw, 1.5rem);
  font-weight: bold;
}
#banner .dates h3 {
  font-size: 1.15rem;
}
#banner .dates p {
  margin: 0;
}

#mapa {
  height: 270px;
}

#brands {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 2rem;
  text-align: center;
}
#brands img {
  width: 100%;
  max-width: 9rem;
}
#brands span {
  position: relative;
  display: inline-block;
  padding-top: 2rem;
  font-weight: bold;
}
#brands p {
  margin: 0;
}

#regressive-counter {
  padding: 1rem 1rem 2rem;
}

.ver-mais {
  background: transparent;
  border: none;
  color: #333333;
  padding: 20px 15px;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.ver-mais:hover {
  color: #65348e;
}

footer {
  padding: 45px 0;
  background: #65348e;
}
footer svg {
  height: 35px;
  width: 35px;
  margin-right: 10px;
}
footer span {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 35px;
}
footer .redes {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-items: flex-start;
}
footer .redes > * {
  margin-right: 10px;
}
footer .enderecos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family:
    "Montserrat",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto;
  font-weight: 400 !important;
  font-size: 14px;
  justify-content: start;
}
footer .enderecos > * {
  margin-bottom: 10px;
}
footer .fones {
  display: flex;
  flex-direction: column;
}
footer .fones > * {
  margin-bottom: 10px;
}
footer .desenvolvimento {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}
footer .desenvolvimento img {
  max-height: 25px;
}

/* INICIAL HOME */
@media (max-width: 1199px) {
  #home .smoke-bg,
  #home #empresas.smoke-bg {
    background-image: url(../images/2026/bg-claro.jpg) !important;
    width: 100%;
  }
}
#home #sobre {
  min-height: 60vh;
  padding: 90px;
}
#home #sobre p {
  text-align: center;
  font-size: 0.875rem;
  line-height: 35px;
  font-weight: 600;
}
@media (min-width: 992px) {
  #home #sobre,
  #home #empresas {
    background-image: url(../images/2026/bg-imagens.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 0%;
    position: relative;
  }
}
#home #programacao .prog-card .details {
  display: none;
}
#home #noticias {
  background: #ffd54d;
  z-index: 1;
  position: relative;
}
#home #galeria .gallery-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#home #galeria .gallery-wrapper .column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
  display: flex;
  flex-direction: column;
}
#home #galeria .gallery-wrapper .column:nth-child(even) {
  flex-direction: column-reverse;
}
#home #galeria .gallery-wrapper .column figure {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  margin-top: 8px;
}
#home #galeria .gallery-wrapper .column img {
  width: 100%;
  transition: all 0.3s ease;
}
#home #galeria .gallery-wrapper .column img:hover {
  transform: scale(1.5);
}
#home #empresas {
  background-image: url(../images/2026/bg-imagens.jpg);
}

/* NOTICIA INT */
#noticia-int .ver-mais {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
#noticia-int #text {
  padding-top: 90px;
}
#noticia-int #text p {
  text-align: justify;
}
#noticia-int #gallery img {
  margin-bottom: 15px;
  width: 100%;
}

#brands .sponsorships p {
  font-size: small;
  color: #5e2e87;
}

#brands .support p {
  color: #5e2e87;
}

#brands .sponsorships a {
  margin-inline: 1rem;
  margin-block: auto;
}
#brands .sponsorships a img {
  width: 150px;
  max-height: 74px;
  -o-object-fit: contain;
  object-fit: contain;
}

#brands .support a {
  margin-inline: 1.2rem;
}
#brands .support a img {
  width: 144px;
  max-height: 74px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 767px) {
  .section-title {
    margin-bottom: 20px;
    margin-top: 50px;
  }
  #banner .data {
    max-width: 100% !important;
    padding: 15px 10px !important;
  }
  #noticia-int #banner .data {
    max-width: 100% !important;
  }
  #noticia-int #banner .data h1 {
    font-size: 18px !important;
    margin-bottom: 0;
  }
  #home #sobre {
    padding-top: 120px;
  }
  #home #programacao .ver-mais {
    display: block;
  }
  #home #programacao .row {
    max-height: 744px;
    overflow: hidden;
    transition: max-width 0.4s ease;
  }
  #home #galeria .gallery-wrapper .column {
    flex: 100% !important;
    max-width: 100% !important;
    flex-direction: column !important;
  }
}
@media (min-width: 768px) {
  #home #banner .dates {
    height: 0;
  }
}
@media (max-width: 991px) {
  section:not(.no-padding) {
    padding-bottom: 15px;
  }
  #cabecalho .navbar .container {
    padding: 0;
  }
  #cabecalho .navbar .navbar-brand {
    padding-left: 15px;
  }
  #cabecalho .navbar .navbar-collapse {
    background: #65348e;
    position: relative;
    z-index: 9999;
  }
  #cabecalho .navbar .navbar-collapse .nav-item {
    margin: 0;
    padding: 0 15px;
  }
  #cabecalho .navbar .navbar-collapse .nav-link {
    color: #fff;
  }
  #cabecalho .navbar .navbar-toggler svg {
    color: #65348e;
    height: 30px;
    width: 30px;
  }
  #home #banner .data {
    padding: 25px 0;
  }
  #home #galeria .gallery-wrapper .column {
    flex: 50%;
    max-width: 50%;
  }
}
@media (min-width: 992px) {
  .smoke-bg {
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
  }
  .smoke-bg .container {
    position: relative;
    z-index: 1;
  }
  main:not(#home) .smoke-bg::before {
    opacity: 0.5;
  }

  #brands div {
    display: flex;
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }
  #brands span {
    margin-bottom: 4rem;
  }
  #brands p {
    position: absolute;
    top: -1rem;
    width: 100%;
  }
}
@media (max-width: 1199px) {
  #modal-root .modal-body,
  #modal-root .modal-header {
    width: 95vw;
    max-width: unset;
  }
  footer {
    padding: 45px 30px;
  }
  footer .redes {
    margin-bottom: 10px;
    justify-content: center;
  }
  footer .enderecos {
    font-family:
      "Montserrat",
      sans-serif,
      -apple-system,
      BlinkMacSystemFont,
      Roboto;
    font-weight: 400;
    font-size: 14px;
    justify-content: start;
  }
  footer .enderecos > * {
    text-align: center;
  }
  footer .fones {
    align-items: center;
  }
}
@media print {
  body {
    padding-top: 0 !important;
  }
}
/* Fix backgrounds for #empresas-lista */
@media (min-width: 992px) {
  #empresas-lista .smoke-bg {
    background-image: url(../images/2026/bg-imagens.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center -25%;
    position: relative;
  }
}
@media (max-width: 1199px) {
  #empresas-lista .smoke-bg {
    background-image: url(../images/2026/bg-claro.jpg) !important;
  }
}
.regulamentos-link {
  color: #333;
}

.regulamentos-link:hover {
  color: #65348e;
} /*# sourceMappingURL=style.css.map */
