body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: Poppins, sans-serif;
}

.promo-timer {
  width: 100%;
  background: linear-gradient(90deg, #ff2d2d, #ff7a00);
  color: #fff;
  padding: 14px 0;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  box-shadow: 0 0 18px rgba(0,0,0,0.4);
}

.promo-timer .promo-text {
  margin-right: 10px;
}

#countdown {
  font-weight: 800;
  font-size: 22px;
}

.promo-warning {
  animation: pulse 1s infinite;
  color: #fff;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: .4; }
  100% { opacity: 1; }
}

/* desce o conteúdo do site, já que o banner é fixo */
body {
  padding-top: 60px;
}


/* HEADER */
.hero {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  padding-left: 180px;
  padding-top: 10px;


  background-image: url(assets/img/bg-header.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-logo {
  display: block;
  margin-bottom: 10px;
  margin-left: 2px;
  width: 250px;
  padding: 0;
}

.hero-container {
  width: 642px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-title {
  font-size: 45px;
  font-weight: 600;
  line-height: 120%;
  margin: 0;
}

.hero-subtitle {
  font-size: 19px;
  line-height: 140%;
  color: #ccc;
}

.cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: fit-content !important;
  max-width: unset !important;
  padding: 10px 22px !important;
  background: #D1FF2C !important;
  border-radius: 8px !important;
  white-space: nowrap !important;
  color: #000 !important;
  text-decoration: none !important;
  transition: 0.25s ease;
}

/* HOVER COM GLOW */
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 14px #d1ff2c88;
  opacity: 0.95;
}




/* ------------------------------ */
/*        SEÇÃO QUEM SOU EU       */
/* ------------------------------ */

.sobre-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 120px 0;

  background-image: url(assets/img/Quem-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.sobre-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;

  width: 70%;
  max-width: 1100px;

  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 50px;
}

/* Foto à esquerda */
.sobre-foto {
  width: 40%;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  background: #111; /* fallback se img faltar */
}

.sobre-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Texto à direita */
.sobre-texto {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Selo "Quem sou eu" */
.sobre-texto .chip {
  background: #1b1b1b;
  padding: 10px 26px;
  border-radius: 999px;
  color: #D1FF2C;
  font-size: 14px;
  font-weight: 500;
  width: fit-content;
  letter-spacing: 0.5px;
}

/* Nome */
.sobre-texto h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  color: white;
}

/* Parágrafo */
.sobre-texto p {
  font-size: 20px;
  line-height: 160%;
  color: #ccc;
  margin: 0;
  max-width: 600px;
}


/* Sobre o curso  */
/* Títulos da sessão — agora todos brancos */
.curso-title {
    font-size: 38px;
    color: #fff;
    font-weight: 600;
    text-align: center;
}

.curso-subtitle {
    display: none !important; /* remove subtítulo */
}

/* GRID */
.curso-grid {
    width: 60%;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 🔥 TRAVA 3 COLUNAS */
    gap: 26px;
}


/* CARD — apenas borda branca e fundo transparente */
.curso-card {
    border: 1px solid #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    background: transparent !important; /* remove o fundo */
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: 0.3s ease;
}

/* Títulos dos cards em branco */
.curso-card h3 {
    color: #ffffff;
    font-size: 22px;
    margin: 0;
}

/* Texto dentro dos cards */
.curso-card p {
    color: #cccccc;
    font-size: 16px;
    line-height: 150%;
}

/* Hover opcional (fica mais premium) */
.curso-card:hover {
    border-color: #D1FF2C;
    transform: translateY(-4px);
}


/* PREÇO */
.preco {
  width: 100%;
  padding: 140px 0;
  display: flex;
  justify-content: center;
}

.preco-container {
  display: flex;
  gap: 80px;
  width: 85%;
  max-width: 1300px;
  align-items: center;
}

.preco-left {
  width: 35%;
  font-size: 30px;
  font-weight: 500;
  line-height: 140%;
}

.preco-logo {
  width: 140px;
  margin: 0 auto 10px auto;
  display: block;
  opacity: 0.9;
}

.preco-card {
  padding:  35px 50px;
  width: 360px;
  background: rgba(20,20,20,0.6);
  border-radius: 20px;
  border: 1px solid #7FFF00;
  backdrop-filter: blur(6px);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preco-desc {
  margin: 0px;
  color: #999;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.preco-valor {
  margin: 0%;
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 4px;
}

.preco-10x {
  padding: 13px;
  font-size: 26px;
  color: #888;
  font-weight: 400;
}

.preco-rs {
  font-size: 58px;
  color: white;
  font-weight: 700;
}

.preco-num {
  line-height: 135%;
  font-size: 78px;
  color: white;
  font-weight: 700;
}

.preco-avista {
  margin: 0;
  color: #aaa;
  font-size: 16px;
}

.preco-btn {
  margin-top: 18px;
  padding: 16px 0;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  background: #D1FF2C;
  display: block;
  text-decoration: none;


  
}

.preco-btn {
  transition: 0.25s ease;
}

.preco-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 14px #d1ff2c88;
  opacity: 0.95;
}


.secure {
  margin-top: 10px;
  color: #999;
  font-size: 12px;
}

.beneficios {
  width: 35%;
  color: #ccc;
  font-size: 18px;
  line-height: 150%;
}
/* ================================
   SESSÃO DE GARANTIA
=================================== */
/* FAIXA DE GARANTIA SIMPLES */
.garantia-faixa {
    width: 100%;
    padding: 40px 0;
    background: #0f0f0f; /* fundo escuro elegante */
    display: flex;
    justify-content: center;
}

.garantia-faixa-container {
    width: 85%;
    max-width: 650px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.garantia-faixa-img img {
    width: 260px;
    max-width: 180%;
}

.garantia-faixa-texto h3 {
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.garantia-faixa-texto h3 span {
    color: #D1FF2C; /* verde neon da identidade */
}

.garantia-faixa-texto p {
    margin: 6px 0 0 0;
    font-size: 18px;
    color: #ccc;
    line-height: 140%;
}

/* Responsivo */
@media(max-width: 800px) {
    .garantia-faixa-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .garantia-faixa-img img {
        width: 250px;
    }

    .garantia-faixa-texto h3 {
        font-size: 40px;
    }

    .garantia-faixa-texto p {
        font-size: 16px;
    }
}



/* FAQ */
.faq {
    width: 85%;
    max-width: 900px;
    margin: 140px auto;
    color: #fff;
}

.faq h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.faq-item {
    border-bottom: 1px solid #222;
    padding: 20px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "⌃";
    font-size: 20px;
    transform: rotate(180deg);
    transition: 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.faq-answer p {
    font-size: 18px;
    color: #ccc;
    margin: 15px 0 5px 0;
    line-height: 150%;
}

/* FOOTER */
.footer {
    width: 100%;
    padding: 40px 0;
    text-align: center;
    color: #ffffff;
    background: #131313;
    margin-top: 60px;
}

.footer a {
    color: #D1FF2C;
    text-decoration: none;
    font-weight: 600;
}

.footer a:hover {
    text-decoration: underline;
}








/* ============================
   RESPONSIVIDADE HEADER
   ============================ */
@media (max-width: 992px) {
  .hero {
    padding: 60px 40px;
    height: auto;
  }

  .hero-container {
    width: 100%;
    text-align: left;
  }

  .hero-title {
    font-size: 40px;
    line-height: 120%;
  }

  .hero-subtitle {
    font-size: 20px;
    line-height: 150%;
  }

  .cta {
    font-size: 18px;
    padding: 14px 26px;
    margin-top: 20px;
  }
}

/* ==========================
   HEADER MOBILE
   ========================== */
@media (max-width: 600px) {

    .hero {
        width: 100%;
        min-height: 100vh;
        padding: 0 !important;
        background: url("assets/img/bg-header-mobile.jpg") center/cover no-repeat !important;

        /* Tira alinhamento embaixo */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-container {
        margin-top: 60%;
        width: 100%;
        padding: 0 22px;
        text-align: center;

        /* sobe as infos */
        position: relative;
        top: -40px;

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-logo {
        width: 200px;
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 120%;
        margin-bottom: 0px;
        margin-top: 8px;
    }

    .hero-subtitle {
        font-size: 20px;
        line-height: 130%;
        margin-bottom: 20px;
        max-width: 300px;
    }

    .cta {
        width: 100%;
        max-width: 320px;
        padding: 14px 26px;
        margin-top: 12px;
    }
}


/* ==========================
   TABLET — 600px a 1024px
   ========================== */

@media (min-width: 601px) and (max-width: 1024px) {

    .sobre-wrapper {
        padding: 60px 0;
        display: flex;
        justify-content: center;
    }

    .sobre-card {
        width: 85%;
        max-width: 900px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 40px;
        padding: 40px 32px;
        border-radius: 26px;
        background: #111;
    }

    .sobre-foto {
        width: 45%;
        display: flex;
        justify-content: center;
    }

    .sobre-foto img {
        width: 100%;
        max-height: 420px;
        object-fit: cover;
        border-radius: 20px;
    }

    .sobre-texto {
        width: 55%;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .sobre-texto .chip {
        font-size: 14px;
        padding: 10px 26px;
        width: fit-content;
    }

    .sobre-texto h2 {
        font-size: 38px;
        line-height: 130%;
        margin: 0;
    }

    .sobre-texto p {
        font-size: 18px;
        line-height: 160%;
        color: #ccc;
        max-width: 95%;
    }
}

/* ==========================
   MOBILE — até 600px
   ========================== */

@media (max-width: 600px) {

    .sobre-wrapper {
        padding: 40px 0 !important;
        display: flex;
        justify-content: center;
    }

    .sobre-card {
        width: 92%;
        flex-direction: column;
        padding: 26px 22px;
        gap: 24px;
        border-radius: 22px;
        background: #111;
    }

    .sobre-foto {
        width: 100% !important;
        height: auto !important;
        display: flex;
        justify-content: center;
    }

    .sobre-foto img {
        width: 75%;
        border-radius: 18px;
        object-fit: cover;
    }

    .sobre-texto {
        width: 100% !important;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .sobre-texto .chip {
        margin: 0 auto 6px auto;
        font-size: 12px;
        padding: 8px 20px;
    }

    .sobre-texto h2 {
        font-size: 32px;
        line-height: 130%;
        margin: 0;
        text-align: center;
    }

    .sobre-texto p {
        font-size: 17px;
        line-height: 155%;
        color: #ccc;
    }
}


/* =====================================================
   SESSÃO: CURSO — MOBILE
   ===================================================== */
@media (max-width: 600px) {

    .curso-features {
        padding: 60px 0;
        width: 92%;
        margin: 0 auto;
        text-align: center;
    }

    .curso-title {
        font-size: 32px;
        line-height: 130%;
        margin-bottom: 14px;
    }

    .curso-grid {
        display: flex;
        flex-direction: column;
        gap: 18px;
        width: 100%;
    }

    .curso-card {
        padding: 22px;
        border: 1px solid #ffffff25;
        border-radius: 14px;
        text-align: center;
        font-size: 18px;
    }

    .curso-card h3 {
        font-size: 22px;
        margin: 0;
        font-weight: 500;
        color: #fff;
    }
}


/* =====================================================
   SESSÃO: CURSO — TABLET
   ===================================================== */
@media (min-width: 601px) and (max-width: 1024px) {

    .curso-features {
        padding: 80px 0;
        width: 90%;
        margin: 0 auto;
        text-align: center;
    }

    .curso-title {
        font-size: 38px;
        margin-bottom: 20px;
    }

    .curso-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .curso-card {
        padding: 28px;
        border: 1px solid #ffffff25;
        border-radius: 16px;
        font-size: 20px;
    }

    .curso-card h3 {
        font-size: 24px;
        margin: 0;
        font-weight: 500;
    }
}

/* =====================================================
   SESSÃO: PREÇO — MOBILE
   ===================================================== */
@media (max-width: 600px) {

    .preco {
        padding: 70px 0;
    }

    .preco-container {
        flex-direction: column;
        gap: 40px;
        width: 92%;
        text-align: center;
        margin: 0 auto;
    }

    .preco-left {
        width: 100%;
        font-size: 26px;
        text-align: center;
        line-height: 135%;
    }

    .preco-card {
        width: 100%;
        padding: 40px 22px;
        border-radius: 18px;
    }

    .preco-desc {
        font-size: 13px;
        line-height: 150%;
    }

    .preco-valor {
        flex-direction: row;
        gap: 6px;
        justify-content: center;
        align-items: flex-end;
    }

    .preco-10x {
        font-size: 22px;
    }

    .preco-rs {
        font-size: 40px;
    }

    .preco-num {
        font-size: 60px;
        line-height: 1;
    }

    .preco-btn {
        font-size: 18px;
        padding: 14px 0;
        width: 100%;
    }

    .beneficios {
        width: 100%;
        font-size: 18px;
        line-height: 150%;
        margin: 0 auto;
        padding-left: 20px;
        text-align: left;
    }
}


/* =====================================================
   SESSÃO: PREÇO — TABLET
   ===================================================== */
@media (min-width: 601px) and (max-width: 1024px) {

    .preco {
        padding: 100px 0;
    }

    .preco-container {
        flex-direction: column;
        gap: 50px;
        width: 85%;
        margin: 0 auto;
        text-align: center;
    }

    .preco-left {
        width: 100%;
        text-align: center;
        font-size: 30px;
        line-height: 140%;
    }

    .preco-card {
        width: 80%;
        margin: 0 auto;
        padding: 50px 40px;
    }

    .preco-valor {
        justify-content: center;
        gap: 8px;
    }

    .preco-num {
        font-size: 74px;
    }

    .beneficios {
        width: 75%;
        margin: 0 auto;
        text-align: left;
        font-size: 19px;
        line-height: 155%;
    }
}
