@keyframes pulse-suave {
    0%   { transform: scale(1);    box-shadow: 0 4px 15px rgba(232, 131, 58, 0.3); }
    50%  { transform: scale(1.04); box-shadow: 0 8px 30px rgba(232, 131, 58, 0.5); }
    100% { transform: scale(1);    box-shadow: 0 4px 15px rgba(232, 131, 58, 0.3); }
}

:root {
    --laranja:         #E8833A;
    --laranja-escuro:  #C05C1A;
    --fundo-dark:      #FFF8F2;
    --fundo-card:      #FFFFFF;
    --texto-principal: #2C1A0E;
    --texto-secundario:#7A5C4A;
    --vermelho-alerta: #E53E3E;
    --carousel-w: 300px;
    --carousel-gap: 20px;
}

html { scroll-behavior: smooth; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--fundo-dark);
    color: var(--texto-principal);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- BARRA SUPERIOR --- */
.top-bar {
    background-color: var(--vermelho-alerta);
    color: #ffffff;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    width: 100%;
}

/* --- CONTAINER GERAL --- */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 20px 50px;
    text-align: center;
}

/* --- HERO --- */
.hero-section {
    background-color: #1a3a2a;
}

/* --- BADGE --- */
.collection-badge {
    display: inline-block;
    background-color: var(--laranja);
    padding: 8px 30px;
    border-radius: 50px;
    margin-bottom: 35px;
    box-shadow: 0 4px 20px rgba(232, 131, 58, 0.3);
    animation: pulse-suave 3s infinite ease-in-out;
}

.collection-badge span {
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- HEADLINE --- */
.headline {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.headline-intro {
    color: #ffffff;
    font-weight: 800;
    font-size: 2.6rem;
}

.headline-destaque {
    color: #ffffff;
    font-weight: 800;
    font-size: 2.6rem;
    font-style: normal;
}
.headline-destaque strong {
    color: #c8e600; /* destaque visível no fundo escuro */
    font-weight: 900;
}

/* --- BADGE IDADE --- */
.badge-idade {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 8px 22px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 8px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

/* --- BADGES DO HERO --- */
.hero-badges {
    display: flex;
    flex-wrap: wrap;                /* quebra em linhas quando precisar */
    gap: 8px;
    justify-content: center;        /* centraliza em todas telas */
    align-items: center;
    margin: 8px auto 0;
    max-width: 640px;               /* largura controlada para melhor alinhamento */
    padding: 0 12px;
    overflow: visible;              /* sem rolagem horizontal */
}
.hero-badges::before,
.hero-badges::after { content: none; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255,255,255,0.12);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    backdrop-filter: blur(3px);
    flex: 0 0 auto;          /* cada badge mantém seu bloco */
    min-width: auto;
    white-space: nowrap;     /* texto do badge não quebra */
}
.hero-badge:first-child { margin-left: 0; }
.hero-badge:last-child { margin-right: 0; }
/* Oculta barra no mobile */
.hero-badges::-webkit-scrollbar { display: none; }
.hero-badges { scrollbar-width: none; }
@media (max-width: 600px) {
    .hero-badges { gap: 6px; padding: 0 10px; max-width: 560px; }
    .hero-badge { font-size: 0.85rem; padding: 5px 10px; }
    /* Selos do hero lado a lado (3 colunas) */
    .hero-oferta-top .hero-selos {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        justify-items: center;
        align-items: start;
        width: 100%;
        max-width: 420px;
        margin: 16px auto 0; /* pequeno espaçamento extra no topo */
    }
    .hero-oferta-top .hero-selo {
        align-items: center;
        gap: 6px;
        min-width: 0;
        text-align: center;
        font-size: 0.78rem;
        line-height: 1.15;
        width: 100%;
    }
    .hero-selo svg { width: 22px; height: 22px; }
}
@media (min-width: 900px) {
    .hero-badges {
        justify-content: center;
        overflow: visible;
        white-space: normal;
        flex-wrap: wrap;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
    }
    .hero-badge:first-child,
    .hero-badge:last-child { margin: 0; }
}

/* --- DUAS IMAGENS --- */
.hero-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 640px;
    margin: 10px auto 0;
}

.hero-img {
    width: 100%;
    display: block;
}

.hero-img:first-child {
    width: 100%;
    margin: 0;
}

@media (min-width: 768px) {
    .hero-images {
        width: 100%;
        max-width: 640px;
    }
}

/* --- SUBTÍTULO HERO --- */
.hero-subtitulo {
    color: #e6f1eb;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.5;
    max-width: 480px;
    margin: 12px auto 0;
    padding: 0 15px;
}

.hero-subtitulo strong {
    color: #ffffff;
    font-weight: 700;
}

/* --- HERO OFERTA TOPO --- */
.hero-oferta-top {
    margin-top: 14px;
}
.hero-preco-de {
    display: inline-block;
    color: #ff6b6b;
    font-weight: 800;
    margin-bottom: 2px;
    font-size: 1rem;
}
.hero-preco-de s {
    color: #ff0000;
}
.hero-preco-por {
    font-size: 3rem;
    font-weight: 900;
    color: #6fb921;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 6px;
}
.hero-info-entrega {
    margin-top: 10px;
    color: #e6f1eb;
    font-size: 0.95rem;
}
.hero-info-entrega .wa { color: #25D366; font-weight: 700; }
.hero-info-entrega .mail { color: #ffffff; font-weight: 700; }
.hero-selos {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    margin-top: 14px;
    flex-wrap: wrap;
}
.hero-selo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #e7ecea;
    font-size: 0.9rem;
    background: transparent;
    border: 0;
    padding: 0;
    border-radius: 0;
    min-width: 110px;
}
.hero-selo svg { display: block; opacity: 0.9; }
.hero-selo span { color: #e7ecea; font-weight: 600; text-align: center; line-height: 1.2; }
@media (max-width: 600px) {
    .hero-preco-por { font-size: 2.4rem; }
    .hero-selos { gap: 16px; }
    .hero-selo { font-size: 0.85rem; min-width: 96px; }
}

/* --- SEÇÃO DESCRIÇÃO --- */
.descricao-section {
    background-color: #f5f5f5;
}

.descricao-section .container {
    padding: 50px 20px 30px;
}

.descricao-texto {
    color: #2c2c2c;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
}

.descricao-texto strong {
    color: #1a1a1a;
    font-weight: 700;
}

.descricao-setas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 20px;
    font-size: 2.5rem;
    color: #333;
    line-height: 0.8;
}


/* --- BOTÃO CTA --- */
.btn-cta {
    display: block;
    width: 92%;
    max-width: 450px;
    background-color: #6fb921;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 15px;
    border-radius: 12px;
    margin: 20px auto 0;
    border: none;
    box-shadow: 0 4px 20px rgba(111, 185, 33, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: pulse-btn 2s infinite ease-in-out;
}

.btn-cta:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

/* --- CARROSSEL DO MATERIAL --- */
.carousel-section {
    background-color: #f5f5f5;
    padding: 60px 0;
    overflow: hidden;
}

.carousel-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a3a2a;
    text-transform: uppercase;
    line-height: 1.3;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: var(--carousel-gap);
    padding: 10px 0;
    width: max-content;
    animation: carousel-scroll 15s linear infinite;
}

.track-reverse {
    animation: carousel-scroll-reverse 15s linear infinite;
}

.carousel-item {
    background-color: #ffffff;
    border-radius: 12px;
    width: var(--carousel-w);
    height: auto;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    pointer-events: none;
}

.placeholder-img {
    background-color: #e8f5e9;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d6a4f;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    padding: 15px;
}

@keyframes carousel-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc( (var(--carousel-w) + var(--carousel-gap)) * -5 )); }
}

@keyframes carousel-scroll-reverse {
    0% { transform: translateX(calc( (var(--carousel-w) + var(--carousel-gap)) * -4 )); }
    100% { transform: translateX(0); }
}

/* --- RESPONSIVO --- */
@media (max-width: 600px) {
    .headline-intro,
    .headline-destaque {
        font-size: 1.9rem;
    }
    .btn-cta {
        font-size: 1rem;
        padding: 15px 30px;
    }
    .section-title {
        font-size: 1.5rem;
    }
    :root {
        --carousel-w: 240px;
    }
    .carousel-item {
        width: var(--carousel-w);
        height: auto;
    }
}

/* --- SEÇÃO CONSCIENTIZAÇÃO --- */
.consciencia-section {
    background-color: #1a3a2a;
}

.consciencia-section .container {
    max-width: 560px;
    padding: 60px 20px;
}

.cons-abertura {
    font-size: 1.45rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 32px;
}

.cons-texto {
    font-size: 1.15rem;
    font-weight: 500;
    color: #d4e8dc;
    line-height: 1.5;
    margin-bottom: 20px;
}

.cons-texto strong {
    color: #ffffff;
    font-weight: 700;
}

.cons-alerta {
    font-size: 1.05rem;
}

.cons-pensamento {
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 600;
    color: #c8e600;
    margin: 8px 0 28px;
}

/* --- SEÇÃO OFERTA / O QUE VOCÊ VAI RECEBER --- */
.oferta-section {
    background-color: #ffffff;
    padding: 70px 0 30px;
}

.oferta-section .container {
    max-width: 1200px;
    padding-bottom: 0px;
}

.oferta-title-main {
    font-size: 2rem;
    font-weight: 800;
    color: #1a3a2a;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

.oferta-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

@media (max-width: 800px) {
    .oferta-content {
        flex-direction: column;
    }
}

.oferta-img {
    flex: 1.5;
    max-width: 650px;
    display: flex;
    justify-content: center;
}

.oferta-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
}

.oferta-card {
    flex: 1;
    width: 100%;
    max-width: 550px;
    background-color: #ffffff;
    border: 1px solid #dcdcdc;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.oferta-header {
    background-color: #c8e600;
    color: #000000;
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    padding: 12px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.oferta-body {
    padding: 40px 30px 30px;
    display: flex;
    flex-direction: column;
}

.oferta-titulo {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    color: #000;
    margin-bottom: 30px;
}

.oferta-divider {
    border: none;
    border-top: 1px solid #777;
    margin-bottom: 30px;
    width: 100%;
}

.oferta-lista {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.oferta-lista li {
    font-size: 1rem;
    color: #000;
    font-weight: 500;
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid #f2f2f2;
    line-height: 1.4;
}

.oferta-lista li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 1px;
}

.oferta-extra {
    text-align: center;
    font-size: 1.1rem;
    color: #000;
    font-weight: 500;
    margin-top: 10px;
}

/* --- SEÇÃO CHAMADA BÔNUS --- */
.chamada-bonus-section {
    background-color: #1a3a2a;
    padding-top: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.setas-red {
    margin-bottom: 30px;
}

.cb-texto-branco {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.cb-texto-verde {
    color: #c8e600;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 50px;
    letter-spacing: -1px;
}

.cb-faixa {
    background-color: #c8e600;
    color: #000000;
    width: 100%;
    padding: 18px 0;
    font-size: 2.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0px;
}

@media (max-width: 600px) {
    .cb-texto-branco { font-size: 1.8rem; }
    .cb-texto-verde { font-size: 2.2rem; }
    .cb-faixa { font-size: 1.5rem; padding: 15px 0; }
}

/* --- SEÇÃO LISTA DE BÔNUS --- */
.bonus-lista-section {
    background-color: #f5f5f5;
    padding: 70px 0 0;
}

.bonus-lista-section .container {
    padding-bottom: 0px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.bonus-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    border: 1px solid #eaeaea;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.bonus-img {
    padding: 25px;
    background-color: #fcfcfc;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.bonus-img img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 15px rgba(0,0,0,0.1));
}

.bonus-body {
    padding: 25px 30px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.bonus-title-green {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1b6335;
    line-height: 1.35;
    margin-bottom: 15px;
}

.bonus-text {
    font-size: 1.05rem;
    color: #555555;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 25px;
}

.bonus-price-box {
    margin-top: auto;
    background-color: #f4f5f5;
    border-radius: 12px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bonus-valor {
    font-size: 1.15rem;
    color: #555;
    font-weight: 700;
    margin-bottom: 5px;
}

.riscado {
    color: #8da1b5;
    text-decoration: line-through;
    font-weight: 700;
}

.bonus-gratis {
    font-size: 1.6rem;
    font-weight: 900;
    color: #1b6335;
    text-transform: uppercase;
}

/* --- SEÇÃO DEPOIMENTOS --- */
.depoimentos-section {
    background-color: #f5f5f5;
    padding: 50px 0 20px;
    overflow: hidden;
}

.depoimentos-section .container {
    padding-top: 0px;
}

.depo-titulo {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a3a2a;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

:root {
    --dep-w: 280px;
}

.depo-item {
    width: var(--dep-w);
    height: auto;
    border: none;
    box-shadow: none;
    background-color: transparent;
}

.depo-item img {
    border-radius: 12px;
}

.track-depoimentos {
    animation: depo-scroll 15s linear infinite;
}

@keyframes depo-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc( (var(--dep-w) + var(--carousel-gap)) * -4 )); }
}

@media (max-width: 600px) {
    .depo-titulo { font-size: 1.8rem; }
    :root { --dep-w: 240px; }
}

/* --- SEÇÃO DE PREÇOS (OFERTA DUPLA) --- */
.precos-section {
    background-color: #f6f3ea; 
    padding: 30px 0 100px;
}

.precos-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.selo-vermelho-top {
    background-color: #e53e3e;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 12px 25px;
    border-radius: 40px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(229, 62, 62, 0.3);
}

.precos-titulo-main {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1a4128;
    text-align: center;
    line-height: 1.15;
}

.precos-grid {
    display: grid;
    grid-template-columns: 1fr; /* apenas uma coluna em todas as telas */
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

.preco-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

/* Básico */
.card-basico {
    border: 1px solid #e0e0e0;
}

/* Premium */
.card-premium {
    border: 3px solid #28a745;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.plano-titulo {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 25px;
}
.plano-verde {
    color: #1b6335;
}
.plano-escuro {
    color: #333333;
}

.plano-img {
    max-width: 250px;
    margin: 0 auto 30px;
    display: block;
    object-fit: contain;
}

.vc-recebe {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 15px;
}

.plano-lista {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.plano-lista li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.4;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}
.plano-lista li:last-child {
    border-bottom: none;
}

.preco-valores {
    text-align: center;
    margin-top: auto;
    margin-bottom: 15px;
}

.linhas-preco {
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
    padding: 15px 0 10px;
}

.preco-de {
    font-size: 1.2rem;
    color: #ff6b6b;
    display: block;
    margin-bottom: -2px;
}

.preco-por {
    font-size: 3.8rem;
    font-weight: 900;
    color: #2e7d32;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1.5px;
}

.preco-parcelado {
    font-size: 1.1rem;
    color: #6a7686;
    display: block;
    font-weight: 600;
}

.preco-economia {
    text-align: center;
    display: block;
    font-size: 1rem;
    color: #333;
    margin-bottom: 25px;
}
.preco-economia b {
    color: #212529;
}

.oferta-urgencia {
    text-align: center;
    font-size: 1.05rem;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.4;
    padding: 0 5px;
}

.garantia-detalhes-baixo {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #111;
    text-align: center;
    line-height: 1.4;
    font-weight: 500;
}

.aproveite-agora {
    color: #ef4444;
    margin-top: 15px;
    font-size: 1.05rem;
}

@keyframes pulse-btn {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(111, 185, 33, 0.4); }
    50% { transform: scale(1.04); box-shadow: 0 8px 25px rgba(111, 185, 33, 0.7); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(111, 185, 33, 0.4); }
}

.btn-plano {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    background-color: #6fb921;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.2s;
    box-shadow: 0 6px 15px rgba(111, 185, 33, 0.3);
    animation: pulse-btn 2s infinite ease-in-out;
}
.btn-plano:hover {
    background-color: #5da01b;
    transform: translateY(-2px);
}

.alerta-baixo {
    background: #fff5f5;
    border: 2px dashed #feb2b2;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-top: 25px;
    box-shadow: 0 6px 16px rgba(229, 62, 62, 0.1);
}
.alerta-baixo p {
    font-size: 1.15rem;
    font-weight: 800;
    color: #e53e3e;
    margin-bottom: 12px;
}

@keyframes seta-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.alerta-baixo svg {
    animation: seta-bounce 1.5s infinite ease-in-out;
}

.selos-topo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.selo-outline {
    border: 2px solid #28a745;
    color: #28a745;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 6px 18px;
    border-radius: 50px;
    text-transform: uppercase;
}

.selo-luz {
    background-color: #e6fced;
    color: #28a745;
    font-weight: 800;
    text-align: center;
    padding: 12px;
    border-radius: 50px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.item-bonus {
    display: flex;
    align-items: flex-start;
}
.icone-presente {
    font-size: 1.3rem;
    margin-right: 12px;
    margin-top: 2px;
}
.txt-bonus {
    flex: 1;
    color: #555;
    font-size: 1rem;
}
.txt-bonus b {
    color: #333;
    display: block;
    margin-bottom: 2px;
}

@media (max-width: 900px) {
    .precos-grid {
        grid-template-columns: 1fr;
    }
    .precos-titulo-main {
        font-size: 2.5rem;
    }
}
@media (max-width: 600px) {
    .precos-titulo-main {
        font-size: 2rem;
    }
    .preco-por {
        font-size: 3.2rem;
    }
    .selo-vermelho-top {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}

/* --- BOX GARANTIA --- */
.garantia-box {
    background-color: #f0fdf4;
    border-radius: 20px;
    padding: 30px 40px 40px;
    max-width: 650px;
    margin: 60px auto 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.garantia-selo {
    width: 220px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}

.garantia-titulo {
    color: #1b6335;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 25px;
}

.garantia-bold {
    color: #333;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.garantia-txt {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.garantia-txt:last-child {
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .garantia-box {
        padding: 25px 20px 30px;
        margin-top: 50px;
    }
    .garantia-titulo {
        font-size: 1.6rem;
    }
    .garantia-selo {
        width: 170px;
    }
}

/* --- SEÇÃO FAQ --- */
.faq-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.faq-titulo {
    color: #1a4128;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
}

.faq-lista {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-item summary {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1b6335;
    padding: 20px 25px;
    cursor: pointer;
    list-style: none;
    position: relative;
    outline: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    font-weight: 400;
    color: #1b6335;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-resp {
    padding: 0 25px 20px;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    border-top: 1px solid transparent;
}
.faq-item[open] .faq-resp {
    border-top: 1px solid #e9ecef;
    padding-top: 15px;
}

@media (max-width: 600px) {
    .faq-titulo {
        font-size: 2rem;
    }
    .faq-item summary {
        font-size: 1.05rem;
        padding: 15px 40px 15px 15px;
    }
    .faq-item summary::after {
        right: 15px;
    }
    .faq-resp {
        padding: 0 15px 15px;
        font-size: 1rem;
    }
}

/* --- RODAPÉ (FOOTER) --- */
.site-footer {
    background-color: #2e2e2e;
    color: #a0a0a0;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.site-footer p {
    margin-bottom: 25px;
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.site-footer .disclaimer {
    max-width: 650px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: #888888;
}
