/* ----------------- [ FONTES ] ----------------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Forum&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');

/* ----------------- [ CORES ] ----------------- */
:root {
  --roxo-anaplab: #6644c8;
  --roxo-anaplab-hover: #3f2c7b;
  --amarelo-anaplab: #ffc600;
  --amarelo-anaplab-hover: #d3a500;
  --verde-anaplab: #a0a53f;
  --branco: #f3f3f3;
}

/* ----------------- [ ANIMAÇÕES ] ----------------- */
@keyframes logo-aparecer {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes loader-fadein {
  to {
    opacity: 1;
  }
}
@keyframes girar {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(2.2);
    opacity: 0;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* ----------------- [ CARREGAMENTO ] ----------------- */
.tela-carregamento {
  position: fixed;
  inset: 0;
  background: #ffffff;
  color: #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  user-select: none;
  z-index: 10000;
  transition: opacity 0.8s ease;
  overflow: hidden;
}
.tela-carregamento__logo img {
  font-family: 'Outfit', Arial, Helvetica, sans-serif;
  font-size: 6rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #111;
  opacity: 0;
  transform: scale(0.6);
  animation: logo-aparecer 1.3s forwards ease-out;
  width: 350px;
}
.tela-carregamento__loader {
  opacity: 0;
  animation: loader-fadein 1s forwards ease-out;
  animation-delay: 1.5s;
}
.tela-carregamento__progresso {
  font-size: 7rem;
  font-weight: 600;
  color: #6644c8;
  font-variant-numeric: tabular-nums;
  user-select: none;
  text-align: center;
  position: absolute;
  right: 60px;
  bottom: 40px;
  font-family: 'Outfit';
}

/* ----------------- [ CONTEÚDO ] ----------------- */
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Geist', Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
.conteudo-principal {
  opacity: 0;
  transition: opacity 1s ease;
}
.conteudo-principal--visivel {
  opacity: 1;
}

/* ----------------- [ CABEÇALHO ] ----------------- */
.cabecalho {
  top: 0;
  display: flex;
  background: linear-gradient(135deg, #1e1e2f, #2c2c3d, #1a1a1a);
  height: 48px;
  width: 100%;
  justify-content: center;
  align-items: center;
  color: white;
  z-index: 2000;
  /* Gradiente escuro elegante */
  background: linear-gradient(135deg, #1e1e2f, #2c2c3d, #1a1a1a);

  /* Glassmorphism sutil */
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  background-color: rgba(
    30,
    30,
    47,
    0.6
  ); /* transparente por cima do gradiente */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  /* Texto branco e legível */
  color: white;
  font-weight: 500;
  font-family: 'Segoe UI', sans-serif;
}
.cabecalho__texto {
  font-size: 14px;
  max-width: 90%;
  text-align: center;
}
.cabecalho__texto a {
  color: #00aeff;
  text-decoration: underline;
}

/* ----------------- [ NAVBAR ] ----------------- */
.navegacao {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.8);
  color: rgb(30, 30, 30);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.navegacao__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
}

.navegacao__container-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.navegacao__container-logo img {
  height: 50px;
}

.navegacao__logo-texto {
  font-size: 24px;
}

.navegacao__lista {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 14px;
}

.navegacao__link {
  position: relative;
  display: inline-block;
  padding: 4px 0;
  color: rgb(30, 30, 30);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 400;
}

.navegacao__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  height: 6px;
  width: 0%;
  background-color: rgba(102, 68, 200, 0.3);
  border-radius: 0px;
  transition: width 0.3s ease;
}

.navegacao__link:hover {
  color: var(--roxo-anaplab-hover);
}

.navegacao__link:hover::after {
  width: 100%;
}

.navegacao__btns {
  display: flex;
}

.navegacao__botao-baixar {
  display: flex;
  align-items: center;
  background-color: var(--roxo-anaplab);
  padding: 10px 12px;
  text-decoration: none;
  color: white;
  margin-left: 15px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  gap: 10px;
  font-size: 14px;
}

.navegacao__botao-baixar:hover {
  background-color: var(--roxo-anaplab-hover);
  cursor: pointer;
}

.btn__login {
  background-color: rgb(25, 126, 25);
  transition: background-color 0.3s ease;
}

.btn__login:hover {
  background-color: rgb(16, 83, 16);
}

/* Botão hamburger - oculto por padrão */
.navegacao__hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.navegacao__hamburger span {
  width: 25px;
  height: 3px;
  background-color: rgb(30, 30, 30);
  margin: 2px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Animação do hamburger quando ativo */
.navegacao__hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.navegacao__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navegacao__hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Overlay do menu mobile */
.navegacao__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.navegacao__overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Menu lateral mobile */
.navegacao__menu-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background-color: white;
  z-index: 1002;
  padding: 20px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  overflow-y: auto;
}

.navegacao__menu-mobile.active {
  right: 0;
}

.navegacao__menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.navegacao__menu-logo img {
  height: 40px;
}

.navegacao__menu-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: rgb(30, 30, 30);
  padding: 5px;
}

.navegacao__menu-lista {
  list-style: none;
  padding: 0;
}

.navegacao__menu-item {
  margin-bottom: 20px;
}

.navegacao__menu-link {
  display: flex;
  align-items: center;
  padding: 12px 0;
  color: rgb(30, 30, 30);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}

.navegacao__menu-link:hover {
  color: var(--roxo-anaplab);
}

.navegacao__menu-link i {
  margin-left: 8px;
}

.navegacao__menu-btns {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.navegacao__menu-botao {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: rgb(25, 126, 25);
  padding: 15px 20px;
  text-decoration: none;
  color: white;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}

.navegacao__menu-botao:hover {
  background-color: rgb(16, 83, 16);
}

/* Media Queries para Responsividade */
@media (max-width: 768px) {
  .navegacao__lista {
    display: none;
  }

  .navegacao__hamburger {
    display: flex;
  }

  .navegacao__container {
    width: 95%;
  }
}

@media (max-width: 480px) {
  .navegacao__menu-mobile {
    width: 280px;
    max-width: 90vw;
    right: -100%;
  }

  .navegacao__container-logo img {
    height: 40px;
  }

  .navegacao {
    height: 56px;
  }
}

/* ----------------- [ PRINCIPAL ] ----------------- */
.principal {
  position: relative;
  top: 0;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background-color: black;
}
.principal__slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}
.principal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}
.principal__conteudo {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 100px 20px;
  font-weight: 600;
}
.principal__titulo {
  font-size: clamp(2rem, 12vw, 8rem);
  padding-top: 15px;
  padding-bottom: 25px;
  font-family: 'Outfit', Arial, Helvetica, sans-serif;
  position: relative;
  color: #fff;
}
.principal__texto-principal {
  font-size: 16px;
  font-weight: 500;
}
.badge {
  position: relative;
  display: inline-block;
  padding: 0.4em 0.9em;
  background-color: var(--roxo-anaplab);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 4px;
  user-select: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.principal__slogan {
  font-size: 24px;
  margin-bottom: 50px;
  font-family: 'Outfit', Arial, Helvetica, sans-serif;
}
.principal__botoes {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-weight: 500;
}
.principal__botao-video {
  padding: 12px 20px;
  border-radius: 999px;
  border: solid white 1px;
  text-decoration: none;
  color: white;
  display: flex;
  gap: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.principal__botao-video:hover {
  background-color: rgba(242, 242, 242, 0.2);
}
.principal__botao-baixar {
  color: #3b3e40;
  padding: 12px 20px;
  border-radius: 999px;
  background-color: white;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.5s ease;
}
.principal__botao-baixar:hover {
  background-color: var(--amarelo-anaplab);
}

/* ----------------- [ SEÇÃO: CONVENIADOS ] ----------------- */
.conveniados {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
  background-color: #ffffff;
  position: relative;
  padding-bottom: 0px;
  padding-top: 100px;
}
.parceiros-texto {
  font-size: 16px;
  margin-bottom: 30px;
}
.parceiros-titulo {
  position: relative; /* necessário para posicionar o ::before */
  display: inline-block; /* para o ::before acompanhar só o tamanho do texto */
  font-family: 'Forum', Arial, Helvetica, sans-serif;
  font-size: 56px;
  color: #252525;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  z-index: 1;
}
.parceiros-titulo::before {
  content: '';
  position: absolute;
  top: 60%;
  left: 0;
  width: 100%;
  height: 0.4em;
  background: #fff176;
  transform: translateY(10%) rotate(0.5deg);
  border-radius: 4px;
  opacity: 0.7;
  z-index: -1;
}
.conveniados__container {
  width: 80%;
  overflow: hidden;
  position: relative;
  margin-top: 50px;
  padding-bottom: 50px;
}
.conveniados__slider {
  display: flex;
  align-items: center;
  gap: 50px;
  will-change: transform;
}
.conveniados__slider img {
  width: 220px;
  height: auto;
}
.conveniados__container::before,
.conveniados__container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.conveniados__container::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}
.conveniados__container::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}
.conveniados p {
  max-width: 90%;
  width: 800px;
  text-align: center;
  line-height: 1.4;
  color: #6c757d;
}
.conveniados-decoracao {
  animation: girar 3s linear infinite;
  transform-origin: center;
  opacity: 0.2;
  position: absolute;
  width: 200px;
  top: 50px;
  right: -120px;
}
/* ----------------- [ SEÇÃO : ESTATISTICAS ] ----------------- */
.secao-estatisticas {
  background-color: #ffffff;
  padding-bottom: 60px;
  padding-top: 60px;
}
.container-estatisticas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 30px;
}
.item-estatistica {
  background: #ffffff;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  padding: 30px 20px;
  width: 250px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  border-top: solid 8px var(--roxo-anaplab);
}
.item-estatistica:hover {
  transform: translateY(-10px); /* sobe 10px */
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1); /* opcional: aumenta a sombra */
}
.item-estatistica.visivel {
  opacity: 1;
  /* transform: translateY(0); */
}
.icone-estatistica img {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
}
.wrapper-numero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  font-family: 'IBM Plex Mono', 'Lucida Sans', 'Lucida Sans Regular',
    'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.numero {
  font-size: 64px;
  font-weight: 700;
  color: var(--verde-anaplab);
}
.mais {
  font-size: 32px;
  color: var(--verde-anaplab);
  margin-left: 2px;
}
.legenda {
  margin-top: 10px;
  font-size: 18px;
  color: var(--verde-anaplab);
  font-weight: 500;
}
/* ----------------- [ FOOTER ] ----------------- */
.footer {
  background: #101010;
  backdrop-filter: blur(10px);
  color: #e2e8f0;
  padding: 3rem 0 1.5rem;
  position: relative;
  overflow: hidden;
  line-height: 1.4;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #4f46e5, transparent);
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.footer-section h3 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-section p {
  font-size: 14px;
}
.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: white;
  transition: all 0.3s ease;
  /* padding: 0.5rem 0; */
  opacity: 75%;
}
.contact-item:hover {
  transform: translateX(5px);
}
.contact-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}
.social-links {
  display: flex;
  gap: 1rem;
  justify-content: start;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  opacity: 75%;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.social-link:hover {
  transform: translateY(-3px);
}
.social-link:hover::before {
  opacity: 1;
}
.social-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  position: relative;
  z-index: 1;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: white;
  opacity: 75%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer-bottom p {
  margin-bottom: 0.5rem;
  display: flex;
  gap: 7px;
  justify-content: center;
  align-items: center;
}
.company-name {
  color: #ffffff;
  font-weight: 600;
}
.footer-section {
  animation: fadeInUp 0.6s ease-out;
}
.footer-section:nth-child(2) {
  animation-delay: 0.2s;
}
.footer-section:nth-child(3) {
  animation-delay: 0.4s;
}
.smartcode {
  height: 20px;
}
.footer-texto {
  color: white;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}
/* ----------------- [ SEÇÃO: SOBRE NÓS ] ----------------- */
.sobrenos {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #f5f5f7;
  padding-bottom: 60px;
}
.banner {
  height: 330px;
  width: 100%;
  background-image: url(img/banner2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.banner__titulo {
  padding: 15px;
  font-size: 24px;
  background-color: #4b3393;
  position: absolute;
  color: white;
  bottom: -20px;
  left: 150px;
  font-family: 'Outfit', Arial, Helvetica, sans-serif;
  border-top: solid var(--amarelo-anaplab) 4px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.sobrenos__container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
  padding: 40px;
  background-color: #ffffff;
  margin-top: 60px;
  border-radius: 12px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.sobrenos__container__texto {
  font-size: 14px;
  max-width: 650px;
  line-height: 1.4;
  color: #1d1d1f;
}

.sobrenos__container img {
  width: 100%;
  height: auto;
  max-width: 240px;
  margin: 0 auto;
  display: block;
}

.dec-onda {
  width: 100%;
}
/* ----------------- [ SEÇÃO: CONTATO ] ----------------- */
.contact-section {
  padding-top: 80px;
  min-height: 100vh;
  padding-bottom: 80px;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}
.section-header {
  text-align: start;
  margin-bottom: 60px;
}
.section-title {
  font-size: 4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
  text-align: start;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;

  margin: 0 auto;
  font-weight: 400;
  text-align: start;
}
.contact-form {
  background: white;
  padding: 50px;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  margin-bottom: 40px;
}
.form-title {
  font-size: 1.4rem;
  font-weight: 400;
  color: #495057;
  margin-bottom: 30px;
  text-align: start;
  padding: 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}
.form-group {
  position: relative;
}
.form-group.full-width {
  grid-column: 1 / -1;
}
.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #495057;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.required {
  color: #e74c3c;
  font-weight: 600;
}
.form-input,
.form-select {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 2px solid #e9ecef;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: transparent;
  color: #495057;
}
.form-input:focus,
.form-select:focus {
  outline: none;
  border-bottom-color: #ffc501;
}
.form-input::placeholder {
  color: #adb5bd;
  font-style: italic;
}
.form-select {
  cursor: pointer;
  background: white;
}
.submit-btn {
  width: 100%;
  padding: 16px;
  background: #2c3e50;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 30px;
}
.submit-btn:hover {
  background: #34495e;
}
.submit-btn:active {
  background: #2c3e50;
}
.map-container {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.info-text {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 4px;
  border-left: 4px solid #ffc501;
  margin-bottom: 40px;
  font-size: 0.95rem;
  color: #6c757d;
}

#faq {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: relative;
  background-color: var(--roxo-anaplab);
  padding: 60px 20px;
  padding-top: 100px;
  padding-bottom: 100px;
  box-sizing: border-box;
}
.dec-onda {
  position: absolute;
  top: -170px;
  width: 100%;
  transform: scaleY(0.7);
}
#faq h2 {
  text-align: start;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--branco);
  font-weight: bold;
}
.perguntas {
  width: 620px;
}
.faq-item {
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background-color: var(--roxo-anaplab);
  color: white;
  cursor: pointer;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  border: none;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: normal;
  transition: background-color 0.3s ease;
}

.faq-question:hover,
.faq-question[aria-expanded='true'] {
  background-color: var(--roxo-anaplab-hover);
}

.faq-answer {
  padding: 1rem 1.5rem;
  background: #d5d3ff;
  color: #333;
  font-size: 1rem;
  line-height: 1.4;
}
.faq-img img {
  height: 400px;
}
.arrow {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
  margin-left: 1rem;
}

.faq-question[aria-expanded='true'] .arrow {
  transform: rotate(45deg);
}
/* cct */
.secao-contato-anaplab {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  padding-bottom: 100px;
}

.container-informacoes-mapa {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.painel-informacoes-contato {
  background: var(--branco);
  border-radius: 18px;
  padding: 40px;
  border: 1px solid #d2d2d7;
  transition: all 0.3s ease;
}

.painel-informacoes-contato:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--roxo-anaplab);
}

.linha-informacao-contato {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

.linha-informacao-contato:last-child {
  border-bottom: none;
}

.icone-circular-contato {
  width: 44px;
  height: 44px;
  background: var(--roxo-anaplab);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--branco);
  margin-right: 20px;
  flex-shrink: 0;
}

.detalhes-informacao-contato {
  flex: 1;
}

.rotulo-informacao-contato {
  font-size: 14px;
  color: #86868b;
  margin-bottom: 7px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.valor-informacao-contato {
  font-size: 17px;
  color: #1d1d1f;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  width: fit-content;
}

.link-contato-anaplab {
  color: var(--roxo-anaplab);
  text-decoration: none;
  transition: all 0.2s ease;
  display: flex;
  gap: 7px;
}

.link-contato-anaplab:hover {
  color: var(--roxo-anaplab-hover);
}

.container-redes-sociais {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.botao-rede-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 16px;
  color: var(--branco);
}

.botao-rede-social.instagram-anaplab {
  background: #e4405f;
}
.botao-rede-social.facebook-anaplab {
  background: #1877f2;
}
.botao-rede-social.whatsapp-anaplab {
  background: #25d366;
}
.botao-rede-social.linkedin-anaplab {
  background: #0a66c2;
}

.botao-rede-social:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.secao-mapa-localizacao {
  background: var(--branco);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #d2d2d7;
  transition: all 0.3s ease;
}

.secao-mapa-localizacao:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--roxo-anaplab);
}

.cabecalho-mapa-anaplab {
  padding: 24px 32px;
  border-bottom: 1px solid #d2d2d7;
}

.titulo-localizacao-anaplab {
  font-size: 24px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 4px;
}

.subtitulo-localizacao-anaplab {
  font-size: 15px;
  color: #86868b;
}

.wrapper-iframe-mapa {
  height: 400px;
  position: relative;
}

.wrapper-iframe-mapa iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) contrast(1.2);
  transition: filter 0.3s ease;
}

.wrapper-iframe-mapa:hover iframe {
  filter: grayscale(0%) contrast(1);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 999;
  transition: transform 0.2s ease-in-out;
  overflow: hidden;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  z-index: 2;
  position: relative;
}

.whatsapp-ping {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(37, 211, 102, 0.4);
  border-radius: 50%;
  animation: ping 1.5s infinite ease-out;
  z-index: 1;
}

/* ajuste scroll */
#secao-sobrenos {
  scroll-margin-top: 200px;
}
#faq {
  scroll-margin-top: 100px;
}
#secao-contato {
  scroll-margin-top: 100px;
}
/* ----------------- [ TOOLTIP ] ----------------- */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip-text {
  visibility: hidden;
  width: max-content;
  background-color: var(--amarelo-anaplab);
  color: var(--roxo-anaplab-hover);
  text-align: center;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 6px;
  position: absolute;
  bottom: 160%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.1s ease;
  white-space: nowrap;
}

.tooltip::after {
  content: '';
  position: absolute;
  bottom: 105%;
  left: -10%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent var(--amarelo-anaplab) transparent;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.1s ease;
  rotate: 180deg;
}

.tooltip:hover .tooltip-text,
.tooltip:hover::after {
  visibility: visible;
  opacity: 1;
}
.secao-fazemos {
  background-color: #3f2c7b;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.1),
      transparent 40%
    ),
    radial-gradient(circle at 80% 20%, rgba(255, 0, 150, 0.15), transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(0, 255, 200, 0.1), transparent 50%);
  background-blend-mode: screen;
  background-repeat: no-repeat;
  background-size: cover;
}
/* secao missao */
.smissao {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding-top: 90px;
  padding-bottom: 45px;
}
.smissao__conteudo {
  position: relative;
  display: flex;
  padding: 30px 60px;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  gap: 40px;
}
.decoracao-missao {
  position: absolute;
  top: -12px;
  right: -12px;
  height: 30px;

  animation: girar 4s linear infinite;
}

/* Keyframes para girar 360 graus */
@keyframes girar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.smissao__lado1 img {
  height: 340px;
}
.smissao__lado2 {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  height: 300px;
  width: 400px;
}
.smissao__lado2 h3 {
  font-family: 'Outfit', Arial, Helvetica, sans-serif;
  font-size: 36px;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}
.smissao__lado2 h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 70%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}
.smissao__lado2 p {
  color: rgb(255, 255, 255, 0.8);
  line-height: 1.4;
  font-family: 'Geist';
}
/* secao missao */
.sacoesjud {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding-bottom: 90px;
}
.sacoesjud__conteudo {
  display: flex;
  padding: 30px 60px;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  gap: 40px;
}
.sacoesjud__lado1 img {
  height: 340px;
}
.sacoesjud__lado2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  height: 300px;
  width: 400px;
}
.sacoesjud__lado2 a {
  padding: 12px 20px;
  background-color: var(--branco);
  color: var(--roxo-anaplab-hover);
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease, padding 0.3s ease;
}

.sacoesjud__lado2 a:hover {
  background-color: var(--amarelo-anaplab);
  padding: 12px 32px;
  cursor: pointer;
}
.sacoesjud__lado2 h3 {
  font-family: 'Outfit', Arial, Helvetica, sans-serif;
  font-size: 36px;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}
.sacoesjud__lado2 h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 70%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}
.sacoesjud__lado2 p {
  color: rgb(255, 255, 255, 0.8);
  line-height: 1.4;
  font-family: 'Geist';
  margin-bottom: 40px;
}
/* associe-se */
.s-associar {
  width: 100%;
  background-color: #3f2c7b;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.1),
      transparent 40%
    ),
    radial-gradient(circle at 80% 20%, rgba(255, 0, 150, 0.15), transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(0, 255, 200, 0.1), transparent 50%);
  background-blend-mode: screen;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 450px;
  padding-bottom: 40px;
  padding-top: 40px;
}
.s-associar__div {
  display: flex;
  gap: 100px;
  justify-content: center;
  align-items: center;
  margin: 30px;
}
.btn-associar {
  font-size: 24px;
  color: var(--roxo-anaplab-hover);
  background-color: var(--amarelo-anaplab);
  padding: 14px 32px;
  border-radius: 0px;
  text-decoration: none;
  font-weight: 600;
  transition: background ease-in-out 200ms;
  height: fit-content;
}
.btn-associar:hover {
  background-color: var(--amarelo-anaplab-hover);
}
.s-associar__div h3 {
  font-family: 'Outfit', Arial, Helvetica, sans-serif;
  font-size: 64px;
  font-weight: 600;
  color: var(--branco);
  max-width: 500px;
}
.associar-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  max-width: 500px;
}

.associar-stats__item {
  background-color: #322362;
  color: var(--branco);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease;
  font-family: 'Geist', Arial, Helvetica, sans-serif;
}

.associar-stats__item:hover {
  transform: scale(1.05);
}
.s-associar__conteudo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.s-associar__titulo-e-botao {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  flex-wrap: wrap;
}
