@import url("https://use.typekit.net/oad1uyr.css");
#navegacao-portais {
  margin: 0;
  padding: 0;
  outline: 0;
  text-decoration: none;
  list-style: none;
  line-height: normal;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: bold;
  background-color: #1352B7;
  align-content: center;
  z-index: 999;
}
#navegacao-portais a {
  -webkit-transition: all ease 0.25s;
  -moz-transition: all ease 0.25s;
  transition: all ease 0.25s;
}
#navegacao-portais ul {
  margin: 0;
  padding: 0;
  display: inline-table;
  list-style: none;
}
#navegacao-portais ul li {
  display: inline-table;
  text-transform: uppercase;
  margin: 0;
}
#navegacao-portais ul li a {
  color: #ffffff;
  background: transparent;
  text-decoration: none;
  font-size: 13px;
}
#navegacao-portais li {
  padding: 6px 4px;
}
#navegacao-portais li:hover {
  background-color: rgba(51, 51, 51, 0.1254901961);
}
#navegacao-portais li:hover a {
  color: #ffffff;
  opacity: 0.85;
}

@media (min-width: 576px) {
  #navegacao-portais li {
    padding: 6px 10px;
  }
}
:root {
  --color-teal: #02A7C3;
  --color-teal-light: #53BCCF;
  --color-blue-royal: #1352B7;
  --color-green-lime: #A7D320;
  --color-green-emerald: #0DBBA2;
  --color-green-mint: #8DCD99;
  --color-yellow: #FFCC00;
  --color-yellow-light: #F2DE8C;
  --color-white: #FFFFFF;
  --color-off-white: #F2F1ED;
  --color-gray-light: #F4F4F4;
  --color-black: #090B0C;
  --color-primary: #02A7C3;
  --color-secondary: #1352B7;
  --color-accent: #FFCC00;
  --color-bg: #FFFFFF;
  --color-text: #090B0C;
  --color-text-light: #53BCCF;
  --font-heading: 'acumin-variable', sans-serif;
  --font-body: 'dm-sans', sans-serif;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
}

::selection {
  background-color: var(--color-yellow);
  color: var(--color-black);
}

::-moz-selection {
  background-color: var(--color-yellow);
  color: var(--color-black);
}

html,
body {
  margin-top: 0;
  font-family: var(--font-body);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--color-text);
  background-color: var(--color-bg);
}

@keyframes spin-cw {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin-ccw {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
.gradient-green {
  background: linear-gradient(to right, #A7D320, #0DBBA2, #02A7C3);
}

.gradient-blue {
  background: linear-gradient(to right, #1352B7, #0B7FB5, #02A7C3);
}

.separator-gradient {
  height: 4px;
  border: none;
  background: linear-gradient(to right, #A7D320, #0DBBA2, #02A7C3);
  opacity: 1;
}

.btn-cta {
  background-color: var(--color-yellow);
  color: var(--color-black);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.85rem 2.5rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-cta:hover {
  background-color: var(--color-yellow-light);
  color: var(--color-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 204, 0, 0.35);
}

.btn-cta-outline {
  background-color: transparent;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.7rem 2rem;
  border: 2px solid var(--color-white);
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-cta-outline:hover {
  background-color: var(--color-white);
  color: var(--color-blue-royal);
}

#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(115deg, #1352B7 0%, #0B7FB5 30%, #02A7C3 40%, #0DBBA2 65%, transparent 99%), url("../images/av-paulista.jpg") no-repeat top right/cover;
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
}
#hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: url("../images/icone.svg") no-repeat center/contain;
  pointer-events: none;
  animation: spin-ccw 150s linear infinite;
}
#hero::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 450px;
  height: 450px;
  background: url("../images/icone.svg") no-repeat center/contain;
  opacity: 0.5;
  pointer-events: none;
  animation: spin-cw 130s linear infinite;
}
#hero .hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/pattern.png");
  background-repeat: repeat;
  opacity: 0.06;
  pointer-events: none;
}
#hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
}
#hero .hero-logo {
  max-width: auto;
  width: 97%;
  margin-bottom: 1.5rem;
}
#hero .hero-realizacao {
  max-width: 280px;
  width: 60%;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}
#hero .hero-headline {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 2rem;
}
#hero .hero-badge {
  display: inline-block;
  background-color: var(--color-yellow);
  color: var(--color-black);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
#hero .hero-share {
  display: block;
  margin-bottom: 2rem;
}
#hero .hero-cta {
  margin-top: 1rem;
}
#hero .hero-shape-1 {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: url("../images/icone-outline.svg") no-repeat center/contain;
  pointer-events: none;
  animation: spin-cw 120s linear infinite;
}
#hero .hero-shape-2 {
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 240px;
  height: 240px;
  background: url("../images/icone-outline.svg") no-repeat center/contain;
  pointer-events: none;
  animation: spin-ccw 170s linear infinite;
}

#sobre {
  padding: 5rem 0;
  background-color: var(--color-white);
}
#sobre .sobre-icone {
  width: 60px;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}
#sobre .sobre-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--color-black);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
#sobre .sobre-text {
  font-size: 1.05rem;
  font-weight: 400;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1rem;
}
#sobre .sobre-text strong {
  color: var(--color-black);
  font-weight: 700;
}
#sobre .sobre-destaque {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-blue-royal);
  font-style: italic;
  border-left: 4px solid var(--color-teal);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

#destaques {
  padding: 5rem 0;
  background-color: var(--color-off-white);
}
#destaques .destaques-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--color-black);
  text-align: center;
  margin-bottom: 3rem;
}
#destaques .destaque-card {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#destaques .destaque-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
#destaques .destaque-card .destaque-icon {
  font-size: 2.5rem;
  color: var(--color-green-emerald);
  margin-bottom: 1rem;
}
#destaques .destaque-card .destaque-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-black);
  margin-bottom: 0.75rem;
}
#destaques .destaque-card .destaque-card-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

#programacao {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1352B7 0%, #0B7FB5 50%, #02A7C3 100%);
}
#programacao .programacao-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--color-white);
  margin-bottom: 0.5rem;
}
#programacao .programacao-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
#programacao .swiper {
  padding: 20px 0 70px !important;
}
#programacao .swiper .swiper-slide {
  height: auto !important;
}
#programacao .swiper .swiper-slide .card {
  color: #f8f9fa;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  height: 100%;
}
#programacao .swiper .swiper-slide .card .card-body {
  padding: 1.5rem 1.8rem;
  font-size: 1rem;
}
#programacao .swiper .swiper-slide .card .card-body h3 {
  color: var(--color-yellow);
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
#programacao .swiper .swiper-slide .card .card-body .titulo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-white);
  word-break: break-word;
  margin-bottom: 1rem;
}
#programacao .swiper .swiper-slide .card .card-body hr {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 1rem 0;
}
#programacao .swiper .swiper-slide .card .card-body .palestrantes {
  margin-bottom: 0.75rem;
}
#programacao .swiper .swiper-slide .card .card-body .palestrantes img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}
#programacao .swiper .swiper-slide .card .card-body .palestrantes p {
  margin-bottom: 0;
  font-size: 0.9rem;
}
#programacao .swiper .swiper-slide .card .card-body .palestrantes p strong {
  color: var(--color-white);
  font-weight: 600;
}
#programacao .swiper .swiper-slide .card .card-body .palestrantes .cargo {
  display: inline-block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}
#programacao .swiper-button-next,
#programacao .swiper-button-prev {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: #f8f9fa;
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
}
#programacao .swiper-button-next::after,
#programacao .swiper-button-prev::after {
  font-size: 1rem;
}
#programacao .swiper-button-next:hover,
#programacao .swiper-button-prev:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
#programacao .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}
#programacao .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-yellow);
}

#parceiros {
  padding: 4rem 0;
  background-color: var(--color-gray-light);
}
#parceiros .parceiros-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 2rem;
}
#parceiros .parceiro-logo {
  max-height: 50px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
#parceiros .parceiro-logo:hover {
  opacity: 1;
}

#inscricao {
  padding: 5rem 0;
  background: linear-gradient(to right, #A7D320, #0DBBA2, #02A7C3);
  text-align: center;
}
#inscricao .inscricao-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--color-white);
  margin-bottom: 1rem;
}
#inscricao .inscricao-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
#inscricao .btn-cta {
  font-size: 1.2rem;
  padding: 1rem 3rem;
}

#btn-topo {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background-color: var(--color-blue-royal);
  color: #fff;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
#btn-topo.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#btn-topo:hover {
  background-color: var(--color-teal);
}

.footer-vale {
  background-color: var(--color-black);
  padding: 2.5rem 0;
}
.footer-vale .footer-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 300;
  margin-bottom: 0;
  letter-spacing: 0.03em;
}
.footer-vale .footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}
.footer-vale .footer-links a:hover {
  color: var(--color-yellow);
}

@media (max-width: 767.98px) {
  #hero {
    min-height: 90vh;
    min-height: 90dvh;
    padding: 5rem 1rem 3rem;
  }
  #hero::before {
    width: 300px;
    height: 300px;
  }
  #hero::after {
    width: 200px;
    height: 200px;
  }
  #hero .hero-realizacao {
    max-width: 200px;
  }
  #hero .hero-shape-1,
  #hero .hero-shape-2 {
    display: none;
  }
  #sobre {
    padding: 3rem 0;
  }
  #destaques {
    padding: 3rem 0;
  }
  #programacao {
    padding: 3rem 0;
  }
  #inscricao {
    padding: 3rem 0;
  }
}
@media (max-height: 700px) {
  #hero {
    padding: 4rem 1rem 2rem;
  }
  #hero .hero-logo {
    max-width: 520px;
    margin-bottom: 0.75rem;
  }
  #hero .hero-headline {
    font-size: clamp(2rem, 5vh, 2.5rem);
    margin-bottom: 1rem;
  }
  #hero .hero-badge {
    padding: 0.5rem 1.25rem;
    margin-bottom: 0.5rem;
  }
  #hero .hero-share {
    margin-bottom: 1rem;
  }
  #hero .hero-cta {
    margin-top: 0.5rem;
  }
}
@media (max-height: 580px) {
  #hero {
    padding: 3rem 1rem 1rem;
  }
  #hero .hero-logo {
    max-width: 450px;
    margin-bottom: 2rem;
  }
  #hero .hero-content {
    max-width: 100%;
  }
  #hero .hero-headline {
    font-size: clamp(2rem, 4vh, 2.6rem);
    margin-bottom: 2.5rem;
  }
  #hero .hero-badge {
    padding: 0.45rem 1rem;
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  #hero .hero-cta {
    margin-top: 0.25rem;
  }
  #hero .hero-cta .btn-cta {
    padding: 0.6rem 1.75rem;
    font-size: 0.95rem;
  }
  #hero .hero-cta p {
    font-size: 0.8rem;
    margin-bottom: 0;
  }
}
@media (max-height: 480px) {
  #hero {
    padding: 2rem 0.75rem 1rem;
  }
  #hero .hero-logo {
    max-width: 400px;
    margin-bottom: 2rem;
  }
  #hero .hero-content {
    max-width: 100%;
  }
  #hero .hero-headline {
    font-size: clamp(1.9rem, 4vh, 2.6rem);
    margin-bottom: 2rem;
  }
  #hero .hero-badge {
    padding: 0.35rem 0.85rem;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
  }
  #hero .hero-cta .btn-cta {
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
  }
  #hero .hero-cta p {
    font-size: 0.7rem;
  }
}
@media (min-width: 992px) {
  #sobre .sobre-content {
    padding: 0 3rem;
  }
}/*# sourceMappingURL=custom.css.map */