/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

:root {
    --titulo-principal: #001355;
    --icones: #FFC107;
    --destaque: #FF5722;
    --destaque-branco: #fff;
    --destaque-preto: #000;
    --bgc-secao: #FFF4E6;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #fff;
    color: var(--destaque-preto);
}


/* Geral */
.container {
    width: 90%;
    margin: 0 auto;
}

h2 {
    font-size: 32px;
    margin-bottom: 16px;
    text-align: center;
    color: var(--titulo-principal);
}


/* Dobra 01 */
section#dobra-01 {
    background-color: var(--bgc-secao);
    padding: 60px 0;
}

.grid-dobra-01 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.titulo-principal {
    font-size: 46px;
    color: var(--titulo-principal);
    margin-bottom: 10px;
}

.subtitulo {
    font-size: 22px;
    color: var(--subtitulo);
    margin-bottom: 20px;
    line-height: 1.4;
}

.dobra-01-produto ul {
    padding-left: 0;
}

.dobra-01-produto ul li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.dobra-01-produto ul li i {
    color: var(--icones);
    margin-right: 10px;
}

/* Imagem */
.dobra-01-imagem-produto img {
    max-width: 100%;
    height: auto;
    display: block;
    /* border-radius: 10px; */
    /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
}

/* Formulário */
.dobra-01-formulario {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dobra-01-formulario p {
    font-size: 16px;
    text-align: center;
}

.contador {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.contador .box-contador {
    background-color: var(--destaque-branco);
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #ddd;
}

.contador .box-contador p:first-child {
    font-size: 28px;
    font-weight: 700;
    color: var(--destaque);
}

.contador .box-contador p:last-child {
    font-size: 14px;
}

.precos {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.preco p {
    margin: 0;
    text-align: center;
}

.valor-78 {
    text-decoration: line-through;
    font-size: 18px;
    color: #999;
}

.preco-hoje {
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

p.valor-39 {
    font-size: 26px;
    font-weight: 700;
    color: var(--destaque);
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form label {
    display: flex;
    align-items: center;
    background-color: #E5E5E5;
    padding: 10px;
    border-radius: 8px;
    height: 52px;
}

form label i {
    font-size: 20px;
    color: var(--icones);
    margin-right: 10px;
}

form input[type="text"],
form input[type="tel"] {
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
}

button[type="submit"] {
    background-color: var(--destaque);
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #e64a19;
}

.formulario-rodape {
    font-size: 14px;
    text-align: center;
    color: #444;
}

.formulario-rodape i {
    color: var(--destaque);
    margin-right: 5px;
}


/* Dobra 02 */
#dobra-02 {
    background-color: var(--destaque-branco);
    padding: 60px 0;
}

.dobra-02-flex {
    display: flex;
    flex-direction: column;
    /* grid-template-columns: 1fr 1fr; */
    gap: 40px;
    align-items: flex-start;
}

#dobra-02 p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.dobra-02-funciona {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-end;
}

#dobra-02 ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

#dobra-02 ul li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

#dobra-02 ul li i {
    color: var(--icones);
    margin-right: 10px;
}

.funciona-imagem img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}


/* Dobra 03 */
#dobra-03 {
    padding: 60px 0;
    background-color: var(--destaque-branco);
}

#dobra-03 .beneficios-intro {
    text-align: center;
    margin-bottom: 40px;
}

#dobra-03 h2 {
    font-size: 32px;
    color: var(--titulo-principal);
    margin-bottom: 20px;
}

#dobra-03 .beneficios-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.beneficio h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--titulo-principal);
    display: flex;
    align-items: center;
}

.beneficio h3 i {
    margin-right: 10px;
    color: var(--destaque);
    font-size: 20px;
}

.beneficio p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}


/* Dobra Formulário de Pedido */
#formulario-02,
#formulario-03 {
    background-color: var(--bgc-secao);
    padding: 60px 0;
}

.form-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.form-wrapper form {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.form-wrapper h2 {
    font-size: 28px;
    color: var(--titulo-principal);
    margin-bottom: 0;
}

.form-wrapper h2 i {
    margin-left: 10px;
    color: var(--destaque);
}

.form-wrapper form label {
    background-color: var(--destaque-branco);
    padding: 10px;
    border-radius: 8px;
    height: 52px;
}

.form-wrapper form label i {
    font-size: 20px;
    color: var(--icones);
    margin-right: 10px;
}

.form-wrapper form input[type="text"],
.form-wrapper form input[type="tel"] {
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
}

.form-wrapper input[type="submit"] {
    background-color: var(--destaque);
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-wrapper input[type="submit"]:hover {
    background-color: #e64a19;
}


/* Dobra 04 */
#dobra-04 {
    background-color: var(--destaque-branco);
    padding: 60px 0;
}

#dobra-04 h2 {
    font-size: 32px;
    color: var(--titulo-principal);
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-inline: auto;
}

.box-ingredientes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 colunas fixas */
    gap: 30px;
    margin-top: 30px;
}

.ingrediente {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.174);
    transition: transform 0.3s ease;
}

.ingrediente:hover {
    transform: translateY(-5px);
}

.ingrediente img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.ingrediente p:first-child {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--titulo-principal);
}

.ingrediente p:last-child {
    font-size: 16px;
    line-height: 1.5;
}


/* Dobra 05 */
#dobra-05 {
    background-color: var(--destaque-branco);
    padding: 40px 0;
}

.texto-alerta h2 {
    font-size: 28px;
    color: var(--titulo-principal);
    margin-bottom: 10px;
    text-align: center;
}

.texto-alerta h3 {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

#dobra-05 p,
#dobra-05 ul li {
    font-size: 16px;
    line-height: 28px;
}

#dobra-05 img {
    width: 100%;
    border-radius: 8px;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.233); */
}

#dobra-05 .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    justify-content: center;
    align-items: start;
    justify-items: center;
    align-content: center;
}

#dobra-05 .grid h3 {
    margin-bottom: 10px;
}

#dobra-05 .grid ul {
    padding-left: 20px;
}

#dobra-05 .grid ul li {
    margin-bottom: 10px;
}

#dobra-05 .grid ul li i {
    margin-right: 10px;
    color: var(--destaque);
}

#dobra-05 .confiança-final {
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
    font-weight: 600;
    color: var(--titulo-principal);
}


/* Dobra 06 - Depoimentos */
#dobra-06 {
    background-color: #f4f4f4;
    padding: 60px 0;
}

#dobra-06 h2 {
    text-align: center;
    color: var(--titulo-principal);
    font-size: 32px;
    margin-bottom: 40px;
}

.grid-depoimentos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.depoimento {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.depoimento img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid #ccc;
}

.avaliacao {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.estrelas {
    color: #FFD700;
    font-size: 1.2em;
}

.verificado {
    color: #2ecc71;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.verificado i {
    color: #2ecc71;
}

.nome {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 2px;
}

.idade {
    color: #777;
    font-size: 0.95em;
}

.frase {
    font-size: 1.1em;
    font-style: italic;
    color: #1e88e5;
    margin: 12px 0;
}

.texto {
    font-size: 1em;
    color: #444;
    line-height: 1.5;
}


/* Dobra 07 */
#dobra-07 {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

#dobra-07 .flex {
    flex-direction: column;
    align-items: center;
}

#dobra-07 h2 {
    font-size: 32px;
    color: var(--titulo-principal);
    text-align: center;
    margin-bottom: 10px;
}

#dobra-07 .subtitulo {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.como-usar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.como-usar-imagem img {
    max-width: 100%;
    width: 480px;
    border-radius: 10px;
    /* box-shadow: 0 6px 16px rgba(0,0,0,0.1); */
}

.passos {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 450px;
}

.passo {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #fff;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.passo img {
    width: 80px;
}

.passo p {
    margin: 0;
    font-size: 16px;
    color: #444;
    line-height: 1.4;
}


/* Dobra 08 */
#dobra-08 {
    background-color: #fdfdfd;
    padding: 60px 0;
}

#dobra-08 .flex {
    flex-direction: column;
    align-items: center;
}

#dobra-08 h2 {
    font-size: 32px;
    color: var(--titulo-principal);
    text-align: center;
    margin-bottom: 10px;
}

#dobra-08 .subtitulo {
    font-size: 18px;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

.entregas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
    /* max-width: 1000px; */

    /* border: 2px solid blue; */
}

.entrega {
    background-color: #fff;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.entrega:hover {
    transform: translateY(-5px);
}

.entrega img {
    width: 120px;
    margin-bottom: 15px;
}

.entrega .titulo {
    font-size: 18px;
    color: var(--titulo-principal);
    margin-bottom: 10px;
}

.entrega p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}





/* Dobra 09 */
#dobra-09 .faq {
    flex-direction: column;
    width: 100%;
    gap: 40px;
    padding: 60px 0;
}

#dobra-09 .faq h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--titulo-principal);
}

#dobra-09 .faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 colunas */
    gap: 30px;
    width: 100%;
}

/* #dobra-09 .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
} */

#dobra-09 .faq-item {
    background-color: var(--destaque-branco);
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

#dobra-09 .faq-item:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

#dobra-09 .faq-item h3 {
    margin-bottom: 12px;
    color: var(--destaque);
    font-size: 1.1em;
    display: flex;
    gap: 8px;
    align-items: center;
    text-align: center;
}

/* #dobra-09 .faq-item h3::before {
    content: "❓";
    font-size: 1em;
    color: var(--destaque);
} */

#dobra-09 .faq-item p {
    font-size: 1em;
    color: var(--destaque-preto);
    line-height: 1.7;
    text-align: justify;
}




/* Dobra Final */
#dobra-final {
    background-color: var(--bgc-secao);
    padding: 80px 0;
}

.final-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
    justify-items: end;
}

.texto-final {
    text-align: left;
}

#dobra-final h2 {
    font-size: 2.2em;
    color: var(--titulo-principal);
    margin-bottom: 15px;
    line-height: 1.3;
}

#dobra-final .subtitulo {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 25px;
    max-width: 650px;
}

#dobra-final .destaques {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    font-size: 1em;
    color: #444;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#dobra-final .urgencia {
    font-size: 1.1em;
    color: #d32f2f;
    font-weight: bold;
    margin: 25px 0 15px;
}

#dobra-final .garantias {
    font-size: 0.95em;
    color: #555;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#dobra-final .dobra-01-formulario {
    width: 70%;
}

/* Rodapé */
#rodape {
    background-color: #f1f1f1;
    padding: 40px 0 20px;
    font-size: 0.95em;
    color: #444;
    border-top: 1px solid #ddd;
}

.rodape-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.coluna-footer {
    flex: 1 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.coluna-footer p:first-child {
    font-weight: bold;
    margin-bottom: 5px;
    color: #1e88e5;
}

.disclaimer-saude {
    margin: 30px auto 10px;
    font-size: 0.85em;
    color: #777;
    max-width: 900px;
    text-align: center;
    line-height: 1.6;
    padding: 0 15px;
}

.linha-legal {
    text-align: center;
    font-size: 0.85em;
    color: #777;
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}


/* Página de Obrigado */
#pagina-obrigado {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.obrigado-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-content: center;
}

.imagem-obrigado {
    text-align: center;
}

.imagem-obrigado img {
    width: 50%;
    border-radius: 8px;
}

/* .obrigado-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
} */

.texto-obrigado {
  flex: 1 1 500px;
}

.texto-obrigado h1 {
  font-size: 2em;
  color: #1e88e5;
  margin-bottom: 20px;
}

.texto-obrigado p {
  font-size: 1.05em;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.itens-obrigado {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.destaque-atencao {
  color: #d32f2f;
  font-weight: bold;
  margin-top: 20px;
}

.imagem-obrigado img {
  max-width: 100%;
  height: auto;
}

.aviso-final {
  margin-top: 30px;
  font-size: 1em;
  color: #555;
  font-style: italic;
}