
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: "Poppins", Arial, sans-serif;
      background-color: #fff !important;

    color: #fff;
  }

  h1, h2, h3 {
    font-family: "Oswald", sans-serif;
    letter-spacing: -1px;
    text-transform: uppercase;
  }

  /* ===== HERO (DESKTOP) ===== */
  .hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: url('img/sergio-hero.png') no-repeat center center;
    background-size: cover;
    padding: 0 5%;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11, 12, 42, 0.45);
  }

  .logo {
    position: absolute;
    top: 40px;
    left: 60px;
    width: 180px;
    z-index: 2;
  }

  .hero-content {
    max-width: 550px;
    margin-left: auto;
    text-align: left;
    z-index: 2;
    
  }
  


  .hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 1.2rem;
  }

  .hero-content p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #ccc;
  }

  .hero-content p strong {
    color: #fff;
  }

  .hero-content a {
    display: inline-block;
    background-color: #3a2eff;
    color: #fff;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
  }

  .hero-content a:hover {
    background-color: #5b4bff;
  }

  .hero-content small {
    display: block;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #bbb;
  }

  /* ===== SEÇÃO PÓS-GRADUAÇÃO ===== */
.sec-pos {
  background: #fff;
  padding: 70px 20px 80px 20px;
  color: #0b0c2a;
}

.pos-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.pos-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  margin-bottom: 36px;
  color: #000;
  line-height: 1.1;
}

.pos-logo-wrap {
  margin-bottom: 36px;
}

.pos-logo {
  max-width: 320px;
  width: 100%;
  height: auto;
}

.pos-texto {
  text-align: left;
  font-size: 18px;
  line-height: 1.6;
}

.pos-texto p + p {
  margin-top: 14px;
}

.pos-texto ul {
  margin: 18px 0 18px 18px;
  padding: 0;
  list-style: disc;
}

.pos-texto li {
  margin-bottom: 10px;
}

/* ====== DÚVIDAS FREQUENTES ====== */
.faq-section {
  background: #ffffff;
  padding: 80px 20px 90px 20px;
}

.faq-container {
  max-width: 920px;
  margin: 0 auto;
}

.faq-title {
  font-family: "Oswald", sans-serif;
  font-size: 3.4rem;
  text-align: center;
  margin-bottom: 45px;
  color: #000;
  letter-spacing: 1px;
}

.faq-accordion {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 12px 30px rgba(0,0,0,0.03);
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid #e6e6e6;
}

.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  padding: 20px 26px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background .2s ease;
  font-weight: bolder;
}

.faq-question span:first-child {
  flex: 1;
  color: #06111f;
}

.faq-question:hover {
  background: #f5f7fa;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid #0b0c2a;
  border-radius: 50%;
  position: relative;
  flex: 0 0 28px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #0b0c2a;
  transition: transform .2s ease;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* conteúdo */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height .25s ease;
}

.faq-answer p {
  padding: 0 26px 20px 26px;
  line-height: 1.6;
  color: #2a3140;
  font-size: .94rem;
}

/* estado aberto */
.faq-item.open .faq-answer {
  max-height: 320px; /* grande o suficiente p/ textos maiores */
}

.faq-item.open .faq-question {
  background: #f1f4ff;
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}


  /* ===== HERO (MOBILE) ===== */
  @media (max-width: 900px) {
    .hero {
      background: none;
      height: auto;
      padding: 0;
      display: block;
    }

    .hero-image {
   
    width: 100%;
    height: 340px;
    background: url('img/sergio-hero-mobile.jpg') no-repeat center top;
    background-size: cover;
    position: relative;
  }

    .logo {
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 140px;
    }

  .hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    /* menos escuro e começa a escurecer mais tarde */
    background: linear-gradient(180deg,
      rgba(11,12,42,0) 0%,
      rgba(11,12,42,0.25) 55%,
      rgba(11,12,42,0.55) 100%);
  }

    .hero-content {
      background: #0b0c2a;
      margin: 0;
      text-align: center;
      padding: 40px 20px 70px 20px;
    }

    .hero-content h1 {
      font-size: 2.4rem;
    }
  }

  /* ===== SEÇÃO POR QUE ESTUDAR ===== */
  .sec-por-que {
    background: #ffffff;
    padding-bottom: 120px;
    position: relative;
  }

  .sec-por-que .faixa-topo {
    width: 100%;
    height: 38px;
    background: #000b2a url('img/space-blue-topo-1.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
  }

  .sec-por-que .logo-astro {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .sec-por-que .logo-astro img {
    max-width: 220px;
    height: auto;
  }

  .sec-por-que .card-por-que {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 40px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    padding: 50px 40px 60px 40px;
  }

  .sec-por-que .card-por-que h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 35px;
    color: #000;
    font-weight: 600;
  }

  .sec-por-que .card-texto {
    background: #000b2a url('img/space-blue-topo-1.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 40px;
    padding: 35px 40px;
    color: #fff;
    line-height: 1.6;
    font-size: 1.2rem;
   
   
  }

  .sec-por-que .card-texto p + p {
    margin-top: 15px;
  }

  @media (max-width: 900px) {
    .sec-por-que .card-por-que {
      margin: 0 16px;
      padding: 35px 16px 40px 16px;
    }

    .sec-por-que .card-por-que h2 {
      font-size: 1.8rem;
    }
  }

  /* ===== SEÇÃO O QUE POSSO FAZER ===== */
.sec-o-que-fazer {
  background: #fff;
  padding: 80px 20px 170px 20px; /* 170 pra invadir bonito */
  position: relative;
}

.container-oque {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.container-oque h2 {
  font-family: "Oswald", sans-serif;
  font-size: 2.3rem;
  color: #000;
  margin-bottom: 20px;
}
 .container-oque .intro {
  max-width: 820px;
  margin: 0 auto 60px auto;
  color: #333;
  line-height: 1.6;
}

/* palco dos cards */
.cards-wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  z-index: 5;
}
.card-oque {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
  padding: 30px 28px 32px 28px;
  width: 48%;
  text-align: left;
}

.card-oque h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 14px;
  color: #000;
}
.card-oque p {
  color: #41516b;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* foto do Sérgio flutuando */
.sergio-float {
  position: absolute;
  top: 50px;          /* sobe a foto */
  left: 50%;
  transform: translateX(-50%);
  width: 210px;
  pointer-events: none;
  z-index: 8;
}

 /* card de baixo, largo e mais pra baixo */
.card-bottom-oque {
  position: absolute;
  left: 50%;
  bottom: -220px;       /* controla o quanto invade a seção de baixo */
  transform: translateX(-50%);
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(0,0,0,0.15);
  width: 520px;         /* aqui que a gente evita o “tubo” */
  text-align: left;
  padding: 26px 30px 30px 30px;
  z-index: 7;
}


.card-bottom-oque h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 14px;
  color: #000;
}

.card-bottom-oque p {
  color: #41516b;
  line-height: 1.5;
  font-size: 0.95rem;

}

  @media (max-width: 1000px) {
    .cards-wrap {
    display: block;
  }

     .card-oque {
    width: 100%;
    margin-bottom: 20px;
  }

    .sergio-float {
      position: static;
      transform: none;
      display: block;
      margin: -20px auto 10px auto;
    }

    .card-bottom-oque {
      position: static;
      transform: none;
      width: 100%;
      margin-top: 10px;

    }

    .sec-o-que-fazer {
      padding-bottom: 80px;
    }
  }

  /* ===== SEÇÃO SOBRE SÉRGIO ===== */
  .sec-sobre-sergio {
  position: relative;
  background: url('img/planetas.jpg') no-repeat center center;
  background-size: cover;
  padding: 120px 20px 90px 20px;
  color: #fff;
  overflow: hidden;
}

.sec-sobre-sergio .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(11,12,42,0) 0%, rgba(11,12,42,0.6) 50%, rgba(11,12,42,1) 120%);
  pointer-events: none;
}

.sobre-container {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

/* label de cima */
.sobre-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 16px;
}

/* título grandão */
.sobre-titulo {
  font-family: "Oswald", sans-serif;
  font-size: clamp(3.5rem, 5vw, 4.4rem); /* cresce no desktop */
  line-height: 1;
  margin-bottom: 35px;
}

/* foto central */
.sobre-foto {
  display: flex;
  justify-content: center;
  margin-bottom: 35px;
}

.sobre-foto img {
  display: block;
  width: min(100%, 480px);
  border-radius: 28px;
  box-shadow: 0 26px 50px rgba(0,0,0,0.35);
  object-fit: cover;
}

/* texto */
.sobre-texto {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.7;
  font-size: 0.98rem;
}

.sobre-texto p + p {
  margin-top: 15px;
}

.sobre-texto strong {
  font-weight: 700;
}

/* ===== SEÇÃO ASTRONOMIA TOTAL ===== */
.sec-astro-logo {
  position: relative;
  height: 55vh;               /* ocupa 1/3 da tela */
  min-height: 280px;          /* altura mínima em telas pequenas */
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.astro-bg {
  position: absolute;
  inset: 0;
  background: url("img/earth.webp") no-repeat center bottom;
  background-size: cover;
  opacity: 0.95;              /* leve transparência para suavizar */
  z-index: 1;
}

/* véu escuro para contraste */
.sec-astro-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 45%, rgba(0,0,0,0.85) 100%);
  z-index: 2;
}

.astro-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.astro-logo {
  max-width: 360px;
  width: 100%;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.6));
}

.astro-sub-bot {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  line-height: 1.3;
  font-weight: 500;
  text-shadow: 0 12px 25px rgba(0,0,0,.6);
}

/* ========== SEÇÃO MÓDULOS / ACCORDION ========== */
:root {
  --bg: #0b0f14;
  --panel-bg: #0b0f14;
  --text: #fff;
  --muted: #c7ccd1;
  --line: rgba(255,255,255,0.15);
  --accent: #ffd400;
}

.sec-modulos {
  padding: 70px 20px 90px 20px;
  background: var(--bg);
}

.modulos-wrap {
  max-width: 960px;
  margin: 0 auto;
}

.modulos-titulo {
  font-family: "Oswald", sans-serif;
  font-size: clamp(3rem, 5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 15px;
}

.modulos-lead {
  
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 30px;
}

.accordion-box {
  border: 1px solid var(--line);
  background: rgba(4,6,8,0.35);
}

.acc-item {
  border-bottom: 1px solid var(--line);
}

.acc-item:last-child {
  border-bottom: none;
}

.acc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 20px;
  cursor: pointer;
  user-select: none;
  background: rgba(0,0,0,0);
  transition: background .15s;
}

.acc-header:hover {
  background: rgba(255,255,255,0.02);
}

.acc-icon {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
}

.acc-title {
  font-size: 18px;
  font-weight:  900;
}

/* estado aberto */
.acc-item.is-open .acc-header {
  border-left: 3px solid var(--accent);
  padding-left: 17px;
}

.acc-item.is-open .acc-icon {
  background: var(--accent);
  color: #000;
  border-color: transparent;
}

.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  background: rgba(1,1,1,0.12);
}

.acc-inner {
  padding: 12px 20px 18px 54px;
  font-size: .84rem;
  line-height: 1.35;
}

.acc-inner p {
  margin: 0;
}

/* quando estiver aberta */
.acc-item.is-open .acc-content {
  max-height: 500px;
}

/* ícones + e – */
.acc-icon span.plus { display: block; }
.acc-icon span.minus { display: none; }
.acc-item.is-open .acc-icon span.plus { display: none; }
.acc-item.is-open .acc-icon span.minus { display: block; }


/* ===== SEÇÃO: RECEBA TAMBÉM ===== */
.sec-receba {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
  color: #000;
}

.receba-container {
  max-width: 1000px;
  margin: 0 auto;
}

.receba-titulo {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 60px;
}

.receba-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.receba-item {
  width: 200px;
}

.receba-item img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}

.receba-item img:hover {
  transform: scale(1.05);
}

.receba-item p {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
}

/* ===== SEÇÃO: INTELIGÊNCIA ARTIFICIAL ===== */
.sec-ia {
  background: #1c1c1c;
  color: #fff;
  padding: 100px 20px;
}

.ia-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.ia-texto {
  flex: 1;
  min-width: 300px;
}

.ia-texto h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 20px;
  line-height: 1.2;
}

.ia-texto p {
  font-size: 1rem;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 16px;
}

.ia-texto strong {
  color: #fff;
}

.ia-imagem {
  flex: 1;
  min-width: 340px;
  text-align: right;
}

.ia-imagem img {
  width: 100%;
  max-width: 540px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ===== SEÇÃO DE PREÇOS ===== */
.pricing-astro {
  position: relative;
  background: #020710 url('img/bg-estrelas.jpg') no-repeat center top;
  background-size: cover;
  padding: 70px 16px 120px 16px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.pricing-astro__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.9) 80%);
  pointer-events: none;
}

.pricing-astro__top {
  position: relative;
  max-width: 780px;
  margin: 0 auto 60px auto;
  z-index: 2;
}

.pricing-astro__top h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pricing-astro__lead {
  margin-bottom: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

.pricing-astro__badge {
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffd34d;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.pricing-astro__infos p {
  margin-bottom: 10px;
  line-height: 1.4;
}

.pricing-astro__cardwrap {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
}

/* ===== CARD ===== */
.pricing-card {
  background: radial-gradient(circle at top, #253991 0%, #0e1347 65%, #0b0e2a 100%);
  border-radius: 24px;
  width: min(360px, 100%);
  padding: 32px 28px 30px 28px;
  box-shadow: 0 32px 70px rgba(0,0,0,0.35);
  text-align: center;
}

.pricing-card__head h3 {
  font-family: "Oswald", sans-serif;
  font-size: 2.9rem;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-card__head p {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.4;
 
}

.pricing-card__price {
  background: #fff;
  color: #0b0e2a;
  border-radius: 12px;
  padding: 14px 66px;
  display: inline-flex;
  align-items: flex-end;
  gap: 4px;
  margin: 25px 0 20px 0;
}

.pricing-card__price .currency {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}

.pricing-card__price .value {
  font-weight: 700;
  font-size: 4.4rem;
  line-height: 1;
}

.pricing-card__price .period {
  font-size: 0.7rem;
  line-height: 1.1;
  margin-bottom: 4px;
}

.pricing-card__list {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}

.pricing-card__list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 9px;
  font-size: 0.93rem;
  line-height: 1.35;
  
  
}

.pricing-card__list li::before {
  
  position: absolute;
  left: 0;
  top: 0;
  color: #ffd34d;
}

.btn {
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: bolder;
  border-radius: 999px;
  padding: 13px 16px;
  margin-bottom: 16px;
}

.btn-main {
  background: #ffcc5b;
  color: #0b0e2a;
  box-shadow: 0 14px 30px rgba(255,204,91,0.4);
}

.btn-main:hover {
  filter: brightness(1.02);
}

.pricing-card__uptext {
  font-size: 0.75rem;
  line-height: 1.4;
  margin-bottom: 4px;
}

.pricing-card__small {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 5px;
  color: #ffd34d;
}

.btn-sec {
  background: #ffd34d;
  color: #0b0e2a;
  font-size: 1.2rem;
  line-height: 1.1;
}

.pricing-card__foot {
  font-size: 0.65rem;
  opacity: 0.7;
  margin-top: 18px;
  line-height: 1.3;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
    background-color: #fff;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  color: #111;
}

.depoimentos h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 40px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  justify-items: center;
  margin-bottom: 70px;
}

.videos-grid iframe {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.videos-grid iframe:hover {
  transform: scale(1.03);
}

/* ===== VIDEOS INDIVIDUAIS ===== */
.depoimentos h3 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  margin: 60px 0 20px 0;
}

.video-full {
  max-width: 780px;
  margin: 0 auto 70px auto;
}

.video-full iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

/* ====== RODAPÉ CTA ====== */
.cta-footer {
  background: #050b2a; /* azul escuro da página */
  padding: 60px 20px 50px 20px;
}

.cta-footer__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.cta-footer__btn {
  display: inline-block;
  background: rgba(131, 146, 233, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 1.5rem;
  padding: 14px 46px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  backdrop-filter: blur(4px);
}

.cta-footer__btn:hover {
  background: rgba(131, 146, 233, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.14);
}

.cta-footer__divider {
  margin: 32px auto 22px auto;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 90%;
}

.cta-footer__copy {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  line-height: 1.4;
}
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.whatsapp-float.show {
  opacity: 1;
  pointer-events: all;
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
}

/* ===== COUNTDOWN BAR ===== */
:root { --cdw-bg:#0b0c2a; --cdw-accent:#ffd34d; --cdw-text:#fff; --cdw-h:56px; }

.countdown-bar{
  position:fixed; top:0; left:0; right:0; z-index:99999;
  background:linear-gradient(90deg, rgba(11,12,42,.96) 0%, rgba(11,12,42,.96) 100%);
  color:var(--cdw-text);
  box-shadow:0 6px 18px rgba(0,0,0,.18);
  backdrop-filter:saturate(120%) blur(6px);
  height:var(--cdw-h);
}

.cdw-inner{
  max-width:1200px; height:100%;
  margin:0 auto; padding:0 16px;
  display:flex; align-items:center; gap:14px; justify-content:center;
}

.cdw-label{
  font:600 12px/1.1 "Oswald", system-ui, Arial; letter-spacing:.14em;
  color:var(--cdw-accent);
}

.cdw-timers{
  display:flex; align-items:center; gap:8px; font-family: "Oswald", system-ui, Arial;
}

.cdw-box{
  min-width:56px; text-align:center;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  border-radius:8px; padding:6px 6px 4px;
}
.cdw-box span{ display:block; font-size:20px; font-weight:700; line-height:1; }
.cdw-box small{ display:block; font-size:10px; opacity:.8; margin-top:2px; }

.cdw-sep{ opacity:.5; font-weight:700; }

.cdw-btn{
  margin-left:14px;
  background:var(--cdw-accent); color:#111; text-decoration:none;
  padding:10px 16px; border-radius:999px; font-weight:800;
  box-shadow:0 10px 24px rgba(255,211,77,.35);
  transition:transform .12s ease, filter .12s ease;
}
.cdw-btn:hover{ transform:translateY(-1px); filter:brightness(1.03); }



/* MOBILE */
@media (max-width:640px){
  :root{ --cdw-h:64px; }
  .cdw-inner{ gap:10px; justify-content:space-between; }
  .cdw-timers{ gap:6px; }
  .cdw-box{ min-width:48px; }
  .cdw-btn{ padding:8px 14px; font-weight:900; }
}



/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {

      .sec-astro-logo {
    height: 42vh;
  }

  .astro-logo {
    max-width: 280px;
  }

  .astro-sub-bot {
    font-size: 0.75rem;
  }


  .sec-sobre-sergio {
    padding: 90px 16px 80px 16px;
  }

  .sec-sobre-sergio {
  position: relative;
  background: url('img/planetas.jpg') no-repeat center center;
  background-size: cover;
  padding: 120px 20px 90px 20px;
  color: #fff;
  overflow: hidden;
}

.sec-sobre-sergio .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(11,12,42,0) 0%, rgba(11,12,42,0.6) 50%, rgba(11,12,42,1) 120%);
  pointer-events: none;
}

.sobre-container {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

/* label de cima */
.sobre-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 16px;
}

/* título grandão */
.sobre-titulo {
  font-family: "Oswald", sans-serif;
  font-size: clamp(3.5rem, 5vw, 4.4rem); /* cresce no desktop */
  line-height: 1;
  margin-bottom: 35px;
}

/* foto central */
.sobre-foto {
  display: flex;
  justify-content: center;
  margin-bottom: 35px;
}

.sobre-foto img {
  display: block;
  width: min(100%, 480px);
  border-radius: 28px;
  box-shadow: 0 26px 50px rgba(0,0,0,0.35);
  object-fit: cover;
}

/* texto */
.sobre-texto {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.7;
  font-size: 0.98rem;
}

.sobre-texto p + p {
  margin-top: 15px;
}

.sobre-texto strong {
  font-weight: 700;
}



@media (max-width: 900px) {
  .ia-container {
    flex-direction: column;
    text-align: center;
  }

  .ia-imagem {
    text-align: center;
  }

  .ia-imagem img {
    max-width: 90%;
    margin-top: 20px;
  }
}


/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  .sec-sobre-sergio {
    padding: 90px 16px 80px 16px;
  }

  .sobre-titulo {
    font-size: 3.1rem;
  }

  .sobre-texto {
    text-align: left;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .receba-grid {
    gap: 35px;
  }

  .receba-item {
    width: 150px;
  }

  .receba-item img {
    width: 130px;
    height: 130px;
  }

  .receba-item p {
    font-size: 0.85rem;
  }
   .videos-grid {
    grid-template-columns: 1fr;
  }

  .depoimentos h2,
  .depoimentos h3 {
    text-align: center;
  }
}

@media (max-width: 700px) {
  .modulos-titulo {
    font-size: 18px;
  }
  .acc-inner {
    padding-left: 48px;
  }
    .pos-texto {
    font-size: 18px;
  }

  .pos-logo {
    max-width: 260px;
  }

  .pos-title {
    font-size: 2rem;
  }
    .pricing-astro {
    padding-top: 60px;
  }

  .pricing-astro__top {
    text-align: center;
  }

  .pricing-card {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .sobre-titulo {
    font-size: 2.8rem;
  }

  .sobre-texto {
    font-size: 0.9rem;
  }

  .sobre-foto img {
    border-radius: 20px;
  }

  .sec-astro-logo {
    height: 45vh;
  }

  .astro-logo {
    max-width: 240px;
  }

  .astro-sub-bot {
    font-size: 0.7rem;
  }
   .faq-title {
    font-size: 2rem;
  }
  .faq-question {
    padding: 18px 16px;
    gap: 14px;
  }
  .faq-answer p {
    padding: 0 16px 18px 16px;
  }
  
}

/* MOBILE: vira bolinha */
@media (max-width: 640px) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    justify-content: center;
    gap: 0;
    padding: 0;
  }

  .whatsapp-float span {
        display: none;
    white-space: nowrap;
  }

    .whatsapp-float.expand {
    width: auto;
    padding: 12px 20px;
    border-radius: 50px;
    gap: 10px;
  }

    .whatsapp-float.expand span {
    display: inline;
    animation: fadeIn 0.4s ease forwards;
  }

    @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .whatsapp-icon {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 540px) {
  .cta-footer {
    padding: 48px 16px 40px 16px;
  }
  .cta-footer__btn {
    width: 100%;
    max-width: 460px;
  }
  .hero-image::after,
.hero::after {
  pointer-events: none;
}
}

/* ===== MODAL LISTA DE ESPERA ===== */
.modal-lista-espera {
  position: fixed;
  inset: 0;
  display: none;              /* começa escondido */
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.modal-lista-espera.is-open {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}

.modal-box {
  position: relative;
  z-index: 10001;
  max-width: 520px;
  width: 92%;
  background: #050b2a;
  color: #fff;
  border-radius: 18px;
  padding: 26px 24px 26px 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.modal-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.modal-sub {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 16px;
  color: #d4d7ff;
}

.modal-form-wrapper {
  margin-top: 8px;
}

/* botão fechar */
.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

/* mobile */
@media (max-width: 600px) {
  .modal-box {
    padding: 22px 18px 20px 18px;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .modal-sub {
    font-size: 0.9rem;
  }
}

/* ===== MODAL LISTA DE ESPERA ===== */
.modal-lista-espera {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.modal-lista-espera.is-open {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}

.modal-box {
  position: relative;
  z-index: 10001;
  max-width: 520px;
  width: 92%;
  background: #050b2a;
  color: #fff;
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

.modal-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.modal-sub {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 16px;
  color: #d4d7ff;
}

.modal-form-wrapper {
  margin-top: 8px;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 600px) {
  .modal-box {
    padding: 22px 18px 20px 18px;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .modal-sub {
    font-size: 0.9rem;
  }
}


}





