
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #f4f4f4;
    color: #333;
}

.hero {
    background: url('assets/desktop/01-dobra-titulo.png') no-repeat center center/cover;
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Alinha o conteúdo à esquerda */
    color: white;
    position: relative;
    padding-left: 5vw; /* Espaço da borda esquerda */
    padding-right: 5vw;
    padding-top: 10vw;
    text-align: left; /* Texto alinhado à esquerda */
}

.overlay {
    /*background-color: rgba(0, 0, 0, 0.6);*/
    padding: 2rem;
    max-width: 600px; /* Limita largura do texto */
}

.dobra2 {
  background: url('assets/desktop/02-dobra-defesa.png') no-repeat center center/cover;
  height: 90vh;
  color: white;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5vw; 
  padding-right: 5vw;
  padding-top: 1vw;
  position: relative;
  text-align: left; 
}

.dobra2 .container {
  padding: 2rem;
  max-width: 600px; /* Limita largura do texto */
}

.cta {
    background-color: #FFDE59;
    color: #000000;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 1rem;
}

.feedbacks {
    padding: 2rem;
    background: black;
    color: white;
    text-align: center;
}

.carousel {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-behavior: smooth;
    padding: 1rem 0;
}

.carousel-modulos {
    display: flex;
    overflow-x: auto;
    gap: 0.5rem;
    scroll-behavior: smooth;
    padding: 0.5rem 0;
}

.carousel img {
    height: 200px;
    border-radius: 10px;
}

.video-section {
    padding: 2rem;
    background: black;
    color: white;
    text-align: center;
}

.video-section iframe {
    width: 90%;
    max-width: 480px;
    height: 270px;
    margin: 1rem;
    border: none;
    border-radius: 10px;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #333;
    color: white;
}

/* Responsividade */
@media (max-width: 768px) {
      .hero {
        background: url('assets/mobile/01-dobra-titulo.png') no-repeat center center/cover;
        justify-content: center; /* Centraliza no mobile */
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 500px;
        text-align: center; /* Texto centralizado no mobile */
      }

      .dobra2 {
        background: url('assets/mobile/02-dobra-defesa.png') no-repeat center center/cover;
      }

      .carousel-section {
        background: url('assets/mobile/03-dobra-feedbacks.png') no-repeat center center/cover;
      }

      .dobra6-pros-contras {
        background: url('assets/mobile/05-dobra-antesedepois.png') no-repeat center center/cover;
      }

      .dobra7-conteudo {
        background: url('assets/mobile/06-dobra-modulos.png') no-repeat center center/cover;
      }

      .dobra-lista {
        background: url('assets/mobile/04-dobra-praquemeh.png') no-repeat center center/cover;
      }

      .dobra8-bonus {
        background: url('assets/mobile/07-dobra-bonus.png') no-repeat center center/cover;
      }

      .dobra9-garantia {
        background: url('assets/mobile/08-dobra-garantias.png') no-repeat center center/cover;
      }

      .faq-duas-colunas {
        background: url('assets/mobile/11-dobra-perguntas.png') no-repeat center center/cover;
      }

      .faq-container {
        flex-direction: column;
      }
    
      .overlay {
        padding: 1.5rem;
        max-width: 100%;
      }

      .carousel img {
        height: 150px;
      }

      .grid-modulos ul {
        columns: 1;
        padding-left: 1rem;
      }

      .bonus-container {
        flex-direction: column;
        align-items: center;
      }
}

.dobra4 {
    background-color: #000000; /* tom claro e sóbrio, harmônico com a dobra */
    padding: 3rem 1rem;
    text-align: left;
}

.dobra4 .container {
    max-width: 800px;
    margin: 0 auto;
    color: #FFDE59;
    line-height: 1.6;
    font-size: 1.1rem;
}

.carousel-section {
    background: url('assets/desktop/03-dobra-feedbacks.png') no-repeat center center/cover;
    background-color: #1c0f2c;
    color: #fff;
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .carousel-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #FFDE59;
  }
  
  .carousel-container {
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .carousel {
    display: flex;
    gap: 1rem;
    transition: transform 0.5s ease;
  }
  
  .carousel-item {
    flex: 0 0 300px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    color: #000;
    text-align: left;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }

  .carousel-modulos-item {
    flex: 0 0 292px;
    background-color: black;
    border-radius: 10px;
    overflow: hidden;
    color: white;
    border: 2px solid #FFDE59;
    border-radius: 25px;
    text-align: left;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }
  
  .carousel-item img,
  .carousel-item iframe {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
  }
  
  .carousel-button.prev {
    background-color: #FFDE59;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    left: 0;
}
  
  .carousel-button.next {
    background-color: #FFDE59;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    right: 0;
  }  

.card {
    min-width: 100%;
    box-sizing: border-box;
    padding: 1rem;
    text-align: center;
}

.card img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.carousel-btn {
    background-color: #FFDE59;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

#prevBtn {
    left: 0;
}

#nextBtn {
    right: 0;
}

.dobra6 {
    background: #000000; /* tom claro e sóbrio, harmônico com a dobra */
    color: white;
    padding: 3rem 1rem;
    text-align: center;
}

.dobra6-pros-contras {
    background: url('assets/desktop/05-dobra-antesedepois.png');
    /*background-color: #f9f9f9;*/
    padding: 3rem 1rem;
  }
  
  .dobra6-pros-contras .container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }
  
  .dobra6-pros-contras h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #FFDE59;
  }
  
  .columns {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .col-antes {
    flex: 1;
    background-color: black;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    min-width: 300px;
    /*border: 3px solid;
    border-color: #a33;*/
  }

  .col-depois {
    flex: 1;
    background-color: black;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    min-width: 300px;
    /*border: 3px solid;
    border-color: green;*/
  }
  
  .col-antes h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
  
    padding: 0.5rem 1rem;
    border: 1px solid;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 2rem;
  }
  
  .col-antes ul {
    text-align: left;
    padding-left: 1.2rem;
    color: white;
  }
  
  .col-antes li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #ffffff;
  }

  .col-depois h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
  
    padding: 0.5rem 1rem;
    border: 1px solid;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 2rem;
  }
  
  .col-depois ul {
    text-align: left;
    padding-left: 1.2rem;
    color: white;
  }
  
  .col-depois li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #ffffff;
  }

  .dobra7-conteudo {
    background: url('assets/desktop/06-dobra-modulos.png');
    padding: 3rem 1rem;
  }
  
  .dobra7-conteudo .container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }
  
  .dobra7-conteudo h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #FFDE59;
  }
  
  .dobra7-conteudo .sub {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.1rem;
  }
  
  .grid-modulos ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    list-style: disc;
    text-align: left;
    padding-left: 2rem;
    gap: 2rem;
  }
  
  .grid-modulos li {
    margin-bottom: 0.75rem;
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
  }

  .dobra8-bonus {
    background: url('assets/desktop/07-dobra-bonus.png');
    background-color: #f4f8fc;
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .dobra8-bonus .container {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .dobra8-bonus h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #FFDE59;
  }
  
  .dobra8-bonus .sub {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: left;
  }
  
  .bonus-card {
    background-color: #fff;
    border-left: 5px solid #FFDE59;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  .bonus-card h3 {
    font-size: 1.2rem;
    color: #FFDE59;
    margin-bottom: 0.75rem;
  }
  
  .bonus-card p {
    font-size: 1rem;
    color: white;
    line-height: 1.6;
  }
  
  .bonus-card .valor {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    color: #111;
  }

  .dobra9-garantia {
    background: url('assets/desktop/08-dobra-garantias.png');
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .dobra9-garantia .container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .dobra9-garantia h2 {
    font-size: 2rem;
    color: #1f1f1f;
    margin-bottom: 1.5rem;
    color: #FFDE59;
  }
  
  .dobra9-garantia p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: white;
  }
  
  .dobra9-garantia a {
    color: #FFDE59;
    text-decoration: none;
    font-weight: bold;
  }
  
  .dobra9-garantia .destaque {
    font-weight: 600;
    margin-top: 1rem;
    color: #FFDE59;
  }

  .dobra10-oferta {
    background-color: #eef4fb;
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .dobra10-oferta .container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .dobra10-oferta h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1f1f1f;
  }
  
  .itens-curso {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 2rem;
  }
  
  .itens-curso li {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
  }
  
  .total {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 0.5rem;
  }
  
  .total del {
    color: #a33;
    font-weight: bold;
  }
  
  .oferta {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFDE59;
    margin-bottom: 1.5rem;
  }
  
  .cta-button {
    background-color: #FFDE59;
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 1rem;
  }

  .cta-button-oferta {
    background-color: #FFDE59;
    color: #000000;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 1rem;
  }
  
  .seguro {
    font-size: 0.95rem;
    color: white;
  }

  .dobra11-thaisa {
    background-image: url('assets/mobile/10-dobra-quemethaisa.png'); /* imagem mobile */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 2rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }
  
  .dobra11-thaisa h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #FFDE59;
  }

  /* Para telas maiores, substitui pela imagem desktop */
@media screen and (min-width: 768px) {
    .dobra11-thaisa {
      background-image: url('assets/desktop/10-dobra-quemethaisa.png'); /* imagem desktop */
      flex-direction: row;
      justify-content: flex-start;
      text-align: left;
      padding: 6rem 4rem;
    }
  
    .dobra11-thaisa .texto {
      max-width: 600px;
    }
  }
  
  /* Ajuste para mobile */
  @media screen and (max-width: 767px) {
    .dobra11-thaisa {
      flex-direction: column;
      text-align: center;
      justify-content: flex-start;
      padding-top: 6rem;
    }
  
    .dobra11-thaisa .texto {
      padding: 1rem;
      border-radius: 10px;
      max-width: 90%;
    }
  }
  
  .bio-thaisa .texto {
    text-align: left;
    font-size: 1.1rem;
    color: white;
    line-height: 1.7;
  }

  .dobra12-faq {
    background-color: #f9f9f9;
    padding: 3rem 1rem;
  }
  
  .dobra12-faq .container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .dobra12-faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1f1f1f;
  }
  
  .faq-item {
    margin-bottom: 1.5rem;
  }
  
  .faq-item h3 {
    font-size: 1.2rem;
    color: #FFDE59;
    margin-bottom: 0.5rem;
  }
  
  .faq-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
  }

  .sessao-video {
    background-color: #ffffff;
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .sessao-video .container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .sessao-video h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1f1f1f;
  }
  
  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .dobra-lista {
    background: url('assets/desktop/04-dobra-praquemeh.png') no-repeat center center/cover;
    background-color: #000;
    color: #fff;
    padding: 4rem 2rem;
    font-family: 'Montserrat', sans-serif;
  }
  
  .container-dobra-lista {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  
  .coluna-esquerda {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
  
  .coluna-esquerda h2 {
    font-size: 2rem;
    margin: 0;
    color: #FFDE59;
  }
  
  .coluna-direita {
    flex: 2;
    min-width: 300px;
  }
  
  .lista-enumerada {
    counter-reset: item;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .lista-enumerada li {
    position: relative;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    /*background-color: #111;*/
    border-radius: 4px;
    transition: all 0.3s ease;
    overflow: hidden;
  }
  
  .lista-enumerada li::before {
    counter-increment: item;
    content: counter(item) ".";
    position: absolute;
    left: 1rem;
    top: 1rem;
    font-weight: bold;
    color: #ffd700;
  }
  
  .lista-enumerada li span {
    margin-left: 2rem;
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  
  .lista-enumerada li::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background-color: #FFDE59;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
    z-index: 0;
  }
  
  .lista-enumerada li:hover::after {
    transform: scaleY(1);
  }

  .dobra-bonus {
    padding: 4rem 2rem;
    background-color: black;
    color: white;
  }
  
  .bonus-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 0 auto;
    justify-content: center;
    max-width: 1200px;
  }

  .bonus-container h2 {
    color: #FFDE59;
  }
  
  .bonus-card {
    background-color: #111;
    border-radius: 10px;
    padding: 1.5rem;
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
    color: #ffffff;
  }
  
  .bonus-card img {
    width: 300px;
    height: auto;
    margin: 0 auto 1rem;
  }
  
  .bonus-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    align-items: center;
    color: #ffffff;
  }
  
  .bonus-titulo {
    padding: 0.3rem 0.8rem;
    border: 1px solid #fff;
    border-radius: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
  }
  
  .bonus-preco {
    color: #ff4d4d;
    text-decoration: line-through;
    font-weight: bold;
  }
  
  .bonus-nome {
    text-align: left;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .bonus-descricao {
    font-size: 0.95rem;
    text-align: left;
    margin-bottom: 1rem;
  }
  
  .bonus-botao {
    background-color: #ffd700;
    color: #000;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s ease;
  }
  
  .bonus-botao:hover {
    background-color: #e6c200;
  }
  
  .faq-duas-colunas {
    background: url('assets/desktop/11-dobra-perguntas.png');
    padding: 4rem 2rem;
  }
  
  .faq-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .faq-esquerda {
    flex: 1;
    min-width: 300px;
  }
  
  .faq-direita {
    flex: 2;
    min-width: 300px;
  }
  
  .faq-esquerda h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #FFDE59;
  }
  
  .faq-esquerda p {
    font-size: 1rem;
    color: #ffffff;
  }
  
  .faq-item {
    margin-bottom: 1rem;
  }
  
  .faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .faq-pergunta-texto {
    font-size: 1rem;
    font-weight: bold;
    color: #ffd700;
  }
  
  .faq-toggle {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 1rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .faq-resposta {
    display: none;
    padding: 0.5rem 0;
    color: #ddd;
    font-size: 0.95rem;
  }
  
  hr {
    border: none;
    border-top: 1px solid #444;
    margin: 0.5rem 0;
  }

  .sessao-oferta {
    background: url('assets/desktop/09-dobra-garantias.png');
    padding: 4rem 2rem;
  }
  
  .oferta-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
  }
  
  .coluna-esquerda-oferta, .coluna-centro, .coluna-direita {
    flex: 1;
    min-width: 280px;
  }
  
  .coluna-esquerda-oferta h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #FFDE59;
  }
  
  .coluna-esquerda-oferta p {
    font-size: 1rem;
    color: white;
  }
  
  .oferta-box {
    border: 2px solid #ffd700;
    padding: 2rem;
    border-radius: 10px;
    background-color: #111;
  }
  
  .oferta-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #FFDE59;
    text-align: center;
  }
  
  .oferta-box ul {
    list-style: none;
    padding: 0;
  }
  
  .oferta-box li {
    margin-bottom: 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    color: white;
  }
  
  .oferta-box li span {
    margin-right: 0.5rem;
    font-size: 1.2rem;
  }
  
  .total {
    margin-top: 2rem;
    text-align: center;
    color: white;
    font-weight: bold;
  }
  
  .riscado {
    text-decoration: line-through;
    color: red;
  }
  
  .oferta-final {
    color: #FFDE59;
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  .coluna-direita .linha-icone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #ccc;
  }
  
  .coluna-direita .linha-icone span {
    font-size: 1.2rem;
    color: #FFDE59;
  }

  .oferta-extra {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #fff;
    text-align: center;
  }