/* ========================================
   RESET E BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 90px; /* Espaço para a sticky bar */
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--primary-dark);
}

a {
    text-decoration: none;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ========================================
   LAYOUT E CONTAINER
   ======================================== */
.container {
    max-width: var(--bp-large);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* ========================================
   COMPONENTES REUTILIZÁVEIS
   ======================================== */
.btn {
    display: inline-block;
    background-color: var(--primary-dark);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-dark);
    cursor: pointer;
    text-align: center;
    transition: var(--transition-normal);
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-dark);
}

.btn-primary {
    width: 100%;
    max-width: 300px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
    padding: 0 var(--spacing-xs);
}

/* ========================================
   HEADER (CORRIGIDO: SEM SOBREPOSIÇÃO)
   ======================================== */
.header {
    padding: 10px 0;
    position: relative; /* MUDANÇA CRÍTICA: De absolute para relative */
    width: 100%;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 230px;
    max-width: 230px;
    max-height: 78px;
    object-fit: contain;
    display: block;
}

.header-badges {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.badge-free-shipping {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-dark);
    line-height: 1.1;
}

.btn-header {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.8rem;
}

/* ========================================
   HERO SECTION — CAMPANHA SENSORIAL
   ======================================== */
.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 76% 45%, rgba(171, 224, 185, 0.22), transparent 31%),
        linear-gradient(125deg, #102b1a 0%, #1b4b2d 56%, #2f6b42 100%);
    padding: 70px 0 78px;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to right, #000, transparent 80%);
}

.hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 520px;
    height: 520px;
    right: max(-80px, calc((100vw - 1200px) / 2 - 80px));
    top: 50%;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.02);
}

.hero-orb {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.hero-orb-one {
    width: 190px;
    height: 190px;
    top: -110px;
    left: 12%;
    background: rgba(147, 210, 159, .14);
}

.hero-orb-two {
    width: 120px;
    height: 120px;
    bottom: -65px;
    left: 46%;
    background: rgba(208, 239, 213, .12);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .93fr) minmax(420px, 1.07fr);
    gap: 48px;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 7px 12px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    color: #d7f2dd;
    background: rgba(255,255,255,.08);
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.hero-text h1 {
    max-width: 590px;
    color: var(--white);
    font-size: clamp(3.25rem, 5vw, 4.7rem);
    line-height: .98;
    letter-spacing: -2.5px;
    margin-bottom: 20px;
}

.hero-text h1 em {
    display: block;
    color: #bfe4c6;
    font-weight: 600;
}

.hero-text .hero-lead {
    max-width: 525px;
    margin-bottom: 26px;
    color: rgba(255,255,255,.82);
    font-size: 1.08rem;
    line-height: 1.65;
}

.price-box {
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.7);
    padding: 14px 18px 14px 14px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    box-shadow: 0 16px 45px rgba(4, 22, 10, .24);
}

.price-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 12px;
    color: #e9f5ec;
    background: var(--primary-dark);
    font-size: 1.35rem;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.price-label {
    color: #526258;
    font-size: 0.68rem;
    letter-spacing: .65px;
    text-transform: uppercase;
    font-weight: 700;
}

.price-value-wrapper {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-xs);
}

.price-value {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.price-shipping {
    padding: 4px 7px;
    border-radius: 999px;
    color: #1f6236;
    background: #e0f4e6;
    font-size: 0.61rem;
    text-transform: uppercase;
    font-weight: 800;
}

.price-unit {
    margin-top: 6px;
    color: #526258;
    font-size: .77rem;
}

.price-unit strong {
    color: var(--primary-dark);
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 365px;
    min-height: 58px;
    border-color: #e6c65b;
    border-radius: 12px;
    color: #173422;
    background: linear-gradient(135deg, #f5dc77, #dfb83e);
    box-shadow: 0 12px 30px rgba(2, 16, 7, .28);
    font-size: .84rem;
    font-weight: 800;
}

.hero-cta:hover {
    border-color: #f3d66b;
    color: #173422;
    background: #f7df82;
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-top: 15px;
    color: rgba(255,255,255,.7);
    font-size: .66rem;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.hero-trust i {
    color: #c6e7cd;
}

.secure-buy {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-top: var(--spacing-sm);
}

/* ========================================
   HERO IMAGE (FOTO DO PRODUTO)
   ======================================== */
.hero-image {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.hero-product-img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 30px 35px rgba(0, 0, 0, 0.32));
    transition: transform var(--transition-normal);
}

.hero-product-img:hover {
    transform: translateY(-5px);
}

.hero-cold-label {
    position: absolute;
    z-index: 3;
    top: 12%;
    right: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 12px;
    color: rgba(255,255,255,.86);
    background: rgba(9, 39, 21, .55);
    backdrop-filter: blur(7px);
    font-family: var(--font-display);
    font-size: .82rem;
    line-height: 1.2;
    transform: rotate(3deg);
}

.hero-cold-label i {
    color: #ccebd3;
    font-size: 1.2rem;
}

.hero-product-seal {
    position: absolute;
    z-index: 4;
    right: 4%;
    bottom: 10%;
    display: flex;
    width: 88px;
    height: 88px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 2px solid rgba(255,255,255,.65);
    border-radius: 50%;
    color: var(--primary-dark);
    background: #f4db75;
    box-shadow: 0 12px 28px rgba(0,0,0,.26);
    transform: rotate(-7deg);
}

.hero-product-seal strong {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: .8;
}

.hero-product-seal span {
    margin-top: 5px;
    font-size: .61rem;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
}

/* ========================================
   CAMPANHA "O CALOR PEDE CONSTANÇA"
   Direção editorial de alto impacto
   ======================================== */
.hero {
    min-height: clamp(690px, 82vh, 860px);
    padding: 0;
    background: #102719;
}

.hero-campaign-bg,
.hero-campaign-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-campaign-bg {
    z-index: -3;
    object-fit: cover;
    object-position: center;
}

.hero-campaign-shade {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(6, 20, 11, .96) 0%, rgba(8, 25, 14, .89) 28%, rgba(10, 28, 16, .54) 50%, rgba(9, 24, 14, .06) 75%),
        linear-gradient(0deg, rgba(5, 16, 9, .42), transparent 50%);
}

.hero-giant-word {
    position: absolute;
    z-index: -1;
    right: -18px;
    bottom: -55px;
    color: rgba(255, 255, 255, .09);
    font-family: var(--font-main);
    font-size: clamp(8rem, 17vw, 17rem);
    font-weight: 800;
    line-height: .8;
    letter-spacing: -14px;
    pointer-events: none;
}

.hero-temperature {
    position: absolute;
    z-index: 2;
    top: 28px;
    right: 32px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    color: rgba(255,255,255,.88);
    transform: rotate(3deg);
}

.hero-temperature strong {
    font-family: var(--font-display);
    font-size: 3.7rem;
    line-height: .8;
}

.hero-temperature span {
    padding-bottom: 2px;
    font-size: .63rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.hero-campaign-content {
    display: flex;
    width: 100%;
    min-height: inherit;
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 3;
    width: min(570px, 50%);
    padding: 58px 0 64px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: #d9ebdd;
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-kicker-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #f6d65f;
    box-shadow: 0 0 0 6px rgba(246, 214, 95, .14);
}

.hero-copy h1 {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(3.7rem, 5.5vw, 6.1rem);
    line-height: .88;
    letter-spacing: -5px;
    text-shadow: 0 10px 40px rgba(0,0,0,.24);
}

.hero-copy h1 span {
    display: inline-block;
    color: #f2d65f;
    font-style: italic;
}

.hero-copy > p {
    max-width: 520px;
    margin-bottom: 26px;
    color: rgba(255,255,255,.82);
    font-size: 1.03rem;
    line-height: 1.65;
}

.hero-offer-row {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 18px;
}

.hero-offer {
    min-width: 188px;
    padding: 13px 17px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 14px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 34px rgba(0,0,0,.17);
}

.hero-offer span,
.hero-offer small {
    display: block;
    color: rgba(255,255,255,.68);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.hero-offer strong {
    display: block;
    margin: 2px 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
}

.hero-offer small {
    color: #d2e8d7;
    font-size: .61rem;
}

.hero-offer-benefits {
    display: flex;
    flex-direction: column;
    gap: 9px;
    color: rgba(255,255,255,.78);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-offer-benefits span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-offer-benefits i {
    width: 18px;
    color: #f2d65f;
    text-align: center;
}

.hero-campaign-cta {
    display: inline-flex;
    width: min(100%, 390px);
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px 12px 24px;
    border: 0;
    border-radius: 999px;
    color: #112b1a;
    background: #f2d65f;
    box-shadow: 0 14px 35px rgba(0,0,0,.3);
    font-size: .83rem;
    font-weight: 900;
}

.hero-campaign-cta i {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    background: #183b24;
    transition: transform var(--transition-fast);
}

.hero-campaign-cta:hover {
    color: #112b1a;
    background: #ffe47c;
    transform: translateY(-2px);
}

.hero-campaign-cta:hover i {
    transform: translateX(3px);
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    color: rgba(255,255,255,.62);
    font-size: .7rem;
}

.hero-rating-stars {
    display: flex;
    gap: 2px;
    color: #f2d65f;
    font-size: .65rem;
}

.hero-mobile-visual {
    display: none;
}

.campaign-ticker {
    overflow: hidden;
    padding: 13px 0;
    color: #f7e47f;
    background: #112b1a;
    border-top: 1px solid rgba(255,255,255,.08);
}

.campaign-ticker-track {
    display: flex;
    width: max-content;
    align-items: center;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    animation: campaignTicker 22s linear infinite;
    will-change: transform;
}

.campaign-ticker-group {
    display: flex;
    min-width: 100vw;
    align-items: center;
    justify-content: space-around;
    gap: 24px;
    padding: 0 24px;
}

.campaign-ticker-track i {
    color: #7eb68a;
    font-size: .58rem;
}

@keyframes campaignTicker {
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .campaign-ticker-track { animation: none; }
}

/* ========================================
   BENEFÍCIOS
   ======================================== */
.benefits {
    padding: var(--spacing-lg) 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-sm);
    text-align: center;
}

.benefit-item i {
    font-size: 1.8rem;
    color: var(--accent-green);
    margin-bottom: 12px;
}

.benefit-item h4 {
    font-family: var(--font-main);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    line-height: 1.3;
}

.benefit-item p {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.4;
}

/* ========================================
   SABORES
   ======================================== */
.flavors {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-light);
}

.flavors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 sabores na mesma linha no desktop */
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.flavor-card {
    text-align: center;
    background: var(--white);
    padding: var(--spacing-sm) 5px;
    border-radius: var(--radius-md);
    transition: transform var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flavor-card:hover {
    transform: translateY(-5px);
}

.flavor-img {
    width: 100%;
    max-width: 80px;
    aspect-ratio: 2/3;
    background-color: #ddd;
    margin: 0 auto var(--spacing-xs);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: #777;
    background-size: cover;
    background-position: center;
}

/* Placeholders de imagens dos sabores */
.flavor-pura-folha { background-image: url('../assets/images/products/Constanca_Pura_Folha_1.png'); }
.flavor-menta-extra { background-image: url('../assets/images/products/constan_a_menta_extra_forte_-_1.png'); }
.flavor-fit { background-image: url('../assets/images/products/Erva_Mate_para_Terer_Constan_a_Fit_-_1.png'); }
.flavor-burrito { background-image: url('../assets/images/products/constan_a_burrito_-_1.png'); }
.flavor-boldo { background-image: url('../assets/images/products/Erva_Mate_para_Terer_Constan_a_Boldo_Menta_e_Lim_o_-_1.png'); }

.flavor-name {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-dark);
    line-height: 1.2;
}

/* ========================================
   POR QUE COMPRAR O FARDO FECHADO
   ======================================== */
.why-closed {
    padding: var(--spacing-lg) 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-sm);
    text-align: center;
}

.why-item i {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.why-item h4 {
    font-family: var(--font-main);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    line-height: 1.3;
}

.why-item p {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.4;
}

/* ========================================
   LIFESTYLE / ESTILO DE VIDA
   ======================================== */
.lifestyle {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: var(--spacing-lg) 0;
    position: relative;
    overflow: hidden;
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    align-items: center;
}

.lifestyle-text h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.lifestyle-text p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-sm);
}

.lifestyle-image {
    width: 100%;
}

/* Estilo para a foto real do lifestyle */
.lifestyle-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

/* ========================================
   DEPOIMENTOS
   ======================================== */
.testimonials {
    padding: var(--spacing-lg) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
}

.testimonial-card {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid #eee;
}

.stars {
    color: var(--gold);
    margin-bottom: var(--spacing-xs);
    font-size: 0.9rem;
}

.quote {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
    line-height: 1.5;
}

.author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.avatar {
    width: 35px;
    height: 35px;
    background-color: #ccc;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

/* Fotos individuais dos depoimentos */
.avatar-juliana { background-image: url('../assets/images/avatars/juliana.png'); }
.avatar-rafael { background-image: url('../assets/images/avatars/rafarel.png'); }
.avatar-camila { background-image: url('../assets/images/avatars/camila.png'); }
.avatar-lucas { background-image: url('../assets/images/avatars/lucas.png'); }
.avatar-ana { background-image: url('../assets/images/avatars/ana.png'); }
.avatar-marcos { background-image: url('../assets/images/avatars/marcos.png'); }
.avatar-renata { background-image: url('../assets/images/avatars/renata.png'); }
.avatar-diego { background-image: url('../assets/images/avatars/diego.png'); }

.author-info h5 {
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.7rem;
    color: var(--text-gray);
}

/* ========================================
   FAQ / DÚVIDAS FREQUENTES
   ======================================== */
.faq {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    max-width: 900px;
    margin: 0 auto;
}

details {
    background: var(--white);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    border: 1px solid #e0e0e0;
    cursor: pointer;
}

summary {
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

summary::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--primary-dark);
    font-weight: 300;
}

details[open] summary::after {
    content: '-';
}

details p {
    margin-top: var(--spacing-xs);
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ========================================
   STICKY BOTTOM BAR
   ======================================== */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-dark);
    color: var(--white);
    padding: var(--spacing-sm) 0;
    z-index: 100;
    box-shadow: var(--shadow-sticky);
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.sticky-price {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    white-space: nowrap;
}

.sticky-desc {
    font-size: 0.75rem;
    opacity: 0.9;
    line-height: 1.2;
}

.btn-sticky {
    background-color: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.85rem;
    white-space: nowrap;
}

.btn-sticky:hover {
    background-color: transparent;
    color: var(--white);
}

.trust-footer {
    display: flex;
    gap: var(--spacing-sm);
    font-size: 0.65rem;
    opacity: 0.8;
    align-items: center;
}

.sticky-action {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.sticky-secure {
    font-size: 0.65rem;
    text-align: right;
    opacity: 0.8;
    white-space: nowrap;
}

/* ========================================
   BOTÃO FLUTUANTE WHATSAPP
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; /* Cor oficial do WhatsApp */
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Fica acima de tudo, inclusive da sticky bar */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E; /* Cor mais escura no hover */
    transform: scale(1.1);
}

/* Animação de pulso para chamar atenção */
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
    animation: pulse-whatsapp 2s infinite;
}

/* ========================================
   BOTÃO DO MODAL DE PAGAMENTO
   ======================================== */
.btn.modal-payment-button {
    width: 100%;
    max-width: none;
    background-color: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
    transition:
        background-color var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.btn.modal-payment-button:hover {
    background-color: var(--primary-light);
    color: var(--white);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(27, 58, 36, 0.22);
}

.btn.modal-payment-button:active {  
    transform: translateY(0);
    box-shadow: none;
}

.btn.modal-payment-button:focus-visible {
    outline: 3px solid rgba(44, 94, 61, 0.3);
    outline-offset: 3px;
}

/* ========================================
   MIOLO EDITORIAL — DESEJO, SABORES E VALOR
   ======================================== */
.middle-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 50px;
}

.middle-section-heading h2,
.deal-summary h2,
.lifestyle-text h2 {
    margin: 0;
    font-size: clamp(3rem, 5vw, 5.3rem);
    line-height: .92;
    letter-spacing: -3.5px;
}

.middle-section-heading h2 em,
.deal-summary h2 em,
.lifestyle-text h2 em {
    font-weight: 600;
}

.middle-section-heading > p {
    max-width: 390px;
    margin: 0 0 7px;
    color: #59635c;
    font-size: .98rem;
    line-height: 1.65;
}

.middle-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 17px;
    color: #45624d;
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.middle-kicker::before {
    content: "";
    width: 22px;
    height: 2px;
    background: currentColor;
}

.benefits {
    padding: 112px 0;
    background: #f1efe6;
}

.benefits-heading h2 {
    color: #173621;
}

.benefits-heading h2 em {
    color: #e4552f;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1.35fr 1.35fr 1fr 1fr;
    grid-template-rows: repeat(2, minmax(210px, 1fr));
    gap: 14px;
    text-align: left;
}

.benefit-item {
    position: relative;
    overflow: hidden;
    padding: 29px;
    border: 1px solid rgba(23,54,33,.12);
    border-radius: 22px;
    background: rgba(255,255,255,.54);
    transition: transform .25s ease, box-shadow .25s ease;
}

.benefit-item:hover {
    z-index: 2;
    transform: translateY(-5px) rotate(-.5deg);
    box-shadow: 0 20px 40px rgba(25,50,32,.11);
}

.benefit-item::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    right: -75px;
    bottom: -75px;
    border: 1px solid rgba(23,54,33,.12);
    border-radius: 50%;
}

.benefit-item.benefit-featured {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    min-height: 434px;
    justify-content: flex-end;
    flex-direction: column;
    padding: 38px;
    color: #fff;
    background:
        radial-gradient(circle at 80% 20%, rgba(157,211,170,.28), transparent 29%),
        linear-gradient(145deg, #173a24, #28603a);
}

.benefit-featured::before {
    content: "FRESCO";
    position: absolute;
    top: 30px;
    right: -8px;
    color: rgba(255,255,255,.06);
    font-size: 6.7rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -7px;
}

.benefit-number {
    position: absolute;
    top: 18px;
    right: 20px;
    color: rgba(23,54,33,.4);
    font-size: .65rem;
    font-weight: 900;
}

.benefit-featured .benefit-number {
    color: rgba(255,255,255,.5);
}

.benefit-item i {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    margin: 0 0 23px;
    border-radius: 50%;
    color: #e4552f;
    background: #fff;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

.benefit-featured i {
    width: 62px;
    height: 62px;
    color: #173a24;
    background: #f3d75f;
    font-size: 1.35rem;
}

.benefit-item h4 {
    max-width: 360px;
    margin-bottom: 10px;
    font-family: var(--font-display);
    color: #173621;
    font-size: 1.2rem;
    line-height: 1.05;
    text-transform: none;
}

.benefit-featured h4 {
    color: #fff;
    font-size: 2.4rem;
}

.benefit-item p {
    max-width: 430px;
    color: #667068;
    font-size: .78rem;
    line-height: 1.55;
}

.benefit-featured p {
    color: rgba(255,255,255,.72);
    font-size: .9rem;
}

.flavors {
    overflow: hidden;
    padding: 112px 0 125px;
    color: #fff;
    background: #102719;
}

.flavors-heading h2,
.flavors-heading h2 em {
    color: #fff;
}

.flavors-heading h2 em {
    color: #f2d65f;
}

.flavors-heading .middle-kicker {
    color: #94c19e;
}

.flavors-heading > p {
    color: rgba(255,255,255,.62);
}

.flavors-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.flavor-card {
    position: relative;
    display: flex;
    min-width: 0;
    height: 420px;
    padding: 18px;
    overflow: hidden;
    align-items: stretch;
    justify-content: flex-end;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(165deg, #28563a, #173222);
    box-shadow: none;
    transition: transform .35s ease, border-color .35s ease;
}

.flavor-card:nth-child(2) { background: linear-gradient(165deg, #17617a, #102d3a); }
.flavor-card:nth-child(3) { background: linear-gradient(165deg, #e8e3ce, #a7b89f); color: #173621; }
.flavor-card:nth-child(4) { background: linear-gradient(165deg, #499349, #174a27); }
.flavor-card:nth-child(5) { background: linear-gradient(165deg, #91ad43, #3d632c); }

.flavor-card:hover {
    z-index: 2;
    border-color: rgba(255,255,255,.5);
    transform: translateY(-12px) rotate(-1deg);
}

.flavor-card:nth-child(even) {
    transform: translateY(25px);
}

.flavor-card:nth-child(even):hover {
    transform: translateY(13px) rotate(1deg);
}

.flavor-img {
    width: 100%;
    max-width: none;
    height: 270px;
    margin: 0 0 12px;
    filter: drop-shadow(0 18px 17px rgba(0,0,0,.25));
    transform: scale(1.08);
    transition: transform .35s ease;
}

.flavor-card:hover .flavor-img {
    transform: scale(1.15) rotate(2deg);
}

.flavor-index {
    position: absolute;
    top: 16px;
    left: 17px;
    z-index: 2;
    color: rgba(255,255,255,.62);
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.flavor-card:nth-child(3) .flavor-index {
    color: rgba(23,54,33,.55);
}

.flavor-name {
    position: relative;
    z-index: 2;
    padding-right: 30px;
    color: inherit;
    font-family: var(--font-display);
    font-size: 1.13rem;
    line-height: 1.05;
    text-align: left;
}

.flavor-name small {
    display: block;
    margin-top: 6px;
    opacity: .62;
    font-family: var(--font-main);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .4px;
    line-height: 1.2;
    text-transform: uppercase;
}

.flavor-arrow {
    position: absolute;
    right: 16px;
    bottom: 18px;
    z-index: 3;
    font-size: .72rem;
}

.why-closed {
    padding: 110px 0;
    color: #24140e;
    background: #ef6841;
}

.deal-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
}

.deal-summary .middle-kicker {
    color: #552316;
}

.deal-summary h2,
.deal-summary h2 em {
    color: #25130e;
}

.deal-summary h2 em {
    color: #fff2c4;
}

.deal-math {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 34px 0 27px;
}

.deal-math > div {
    min-width: 112px;
    padding: 14px;
    border: 1px solid rgba(60,24,14,.2);
    border-radius: 15px;
    background: rgba(255,255,255,.17);
}

.deal-math strong,
.deal-math span {
    display: block;
}

.deal-math strong {
    font-family: var(--font-display);
    font-size: 1.6rem;
    line-height: 1;
}

.deal-math span {
    margin-top: 4px;
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.deal-math > b {
    font-size: 1.2rem;
}

.deal-cta {
    display: inline-flex;
    min-width: 285px;
    align-items: center;
    justify-content: space-between;
    border-color: #172f1e;
    border-radius: 999px;
    background: #172f1e;
}

.deal-cta:hover {
    color: #172f1e;
    background: transparent;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    text-align: left;
}

.why-item {
    min-height: 190px;
    padding: 26px;
    border: 1px solid rgba(49,20,12,.15);
    border-radius: 20px;
    background: rgba(255,245,219,.29);
}

.why-item i {
    color: #3e2118;
    font-size: 1.35rem;
}

.why-item h4 {
    margin: 20px 0 8px;
    font-family: var(--font-display);
    color: #2d1811;
    font-size: 1.2rem;
    text-transform: none;
}

.why-item p {
    color: rgba(45,24,17,.72);
    font-size: .76rem;
}

.lifestyle {
    position: relative;
    isolation: isolate;
    min-height: 720px;
    overflow: hidden;
    padding: 0;
    color: #fff;
    background: #102719;
}

.lifestyle-backdrop,
.lifestyle-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.lifestyle-backdrop {
    z-index: -2;
    object-fit: cover;
    object-position: center;
}

.lifestyle-overlay {
    z-index: -1;
    background: linear-gradient(90deg, rgba(5,18,10,.92) 0%, rgba(7,24,13,.74) 42%, rgba(7,20,12,.1) 76%);
}

.lifestyle-grid {
    display: flex;
    min-height: 720px;
    align-items: center;
}

.lifestyle-text {
    max-width: 570px;
}

.lifestyle-text .middle-kicker {
    color: #b6dabd;
}

.lifestyle-text h2,
.lifestyle-text h2 em {
    color: #fff;
}

.lifestyle-text h2 em {
    color: #f2d65f;
}

.lifestyle-text p {
    max-width: 480px;
    margin: 24px 0;
    color: rgba(255,255,255,.74);
    font-size: 1rem;
    line-height: 1.7;
}

.lifestyle-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,.5);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.testimonials {
    padding: 105px 0;
    background: #f2d65f;
}

.testimonials .section-title {
    margin-bottom: 42px;
    font-size: clamp(2.5rem, 4vw, 4.2rem);
}

.testimonials-grid {
    gap: 14px;
}

.testimonial-card {
    min-height: 275px;
    padding: 30px;
    border: 0;
    border-radius: 22px;
    background: #fff8d9;
    box-shadow: none;
}

.testimonial-card:nth-child(2) {
    color: #fff;
    background: #173621;
    transform: translateY(-16px) rotate(-1deg);
}

.testimonial-card:nth-child(2) .quote,
.testimonial-card:nth-child(2) .author-info h5 {
    color: #fff;
}

.testimonial-card:nth-child(2) .author-info span {
    color: rgba(255,255,255,.6);
}

.testimonial-card .quote {
    margin: 23px 0 28px;
    font-family: var(--font-display);
    font-size: 1.13rem;
    line-height: 1.45;
}

/* ========================================
   RITMO FINAL — MARQUEE DE SABORES E SLIDE ÚNICO
   ======================================== */
.benefits {
    padding: 48px 0 54px;
}

.benefits .middle-section-heading {
    align-items: center;
    margin-bottom: 24px;
}

.benefits .middle-section-heading h2 {
    font-size: clamp(2.2rem, 3.1vw, 3.25rem);
    line-height: .94;
}

.benefits .middle-section-heading > p {
    max-width: 330px;
    font-size: .85rem;
}

.benefits-grid {
    grid-template-columns: 1.5fr repeat(4, 1fr);
    grid-template-rows: 190px;
    gap: 9px;
}

.benefit-item,
.benefit-item.benefit-featured {
    grid-column: auto;
    grid-row: auto;
    min-height: 190px;
    padding: 18px;
}

.benefit-featured::before {
    font-size: 3.8rem;
}

.benefit-item i,
.benefit-featured i {
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
    font-size: .85rem;
}

.benefit-item h4,
.benefit-featured h4 {
    font-size: 1rem;
}

.benefit-item p,
.benefit-featured p {
    font-size: .66rem;
    line-height: 1.45;
}

.flavors .carousel-controls {
    display: none;
}

.flavors-grid {
    scroll-behavior: auto;
    scroll-snap-type: none;
    cursor: grab;
}

.flavors-grid:active {
    cursor: grabbing;
}

.flavor-card,
.flavor-card:nth-child(even) {
    flex-basis: 280px;
    min-width: 280px;
}

.testimonials-grid {
    overflow-x: hidden;
}

.testimonial-card,
.testimonial-card:nth-child(2) {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
}

/* Estado visual definitivo */
.benefits { padding: 42px 0 46px; }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 8px;
}
.benefit-item {
    display: grid;
    grid-template-columns: 32px 1fr;
    column-gap: 11px;
    align-items: center;
    min-height: 0;
    padding: 14px 15px;
    border-radius: 13px;
}
.benefit-item i { grid-column: 1; grid-row: 1 / span 2; width: 32px; height: 32px; margin: 0; }
.benefit-item h4 { grid-column: 2; margin: 0 20px 2px 0; font-size: .9rem; }
.benefit-item p { grid-column: 2; font-size: .62rem; line-height: 1.35; }

.flavors { padding: 72px 0 66px; color: #173621; background: #f8faf7; }
.flavors-heading h2,
.flavors-heading h2 em { color: #173621; }
.flavors-heading h2 em { color: #6d8c74; }
.flavors-heading .middle-kicker { color: #54725c; }
.flavors-heading > p { color: #68736b; }
.flavors-grid { gap: 42px; padding: 4px 0 12px; }
.flavor-card,
.flavor-card:nth-child(even) {
    flex: 0 0 205px;
    min-width: 205px;
    max-width: 205px;
    height: auto;
    min-height: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    color: #173621;
    background: transparent;
    box-shadow: none;
}
.flavor-card:hover,
.flavor-card:nth-child(even):hover { border: 0; transform: translateY(-4px); }
.flavor-img {
    height: 225px;
    margin: 0 0 8px;
    filter: drop-shadow(0 13px 10px rgba(20,45,27,.14));
    mix-blend-mode: multiply;
    transform: none;
}
.flavor-index,
.flavor-arrow { display: none; }
.flavor-name { padding: 0; color: #173621; font-size: .92rem; text-align: center; }
.flavor-name small { font-size: .5rem; }

.testimonials { padding: 62px 0; }
.testimonials-heading-row .carousel-controls { display: none; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0;
    overflow: visible;
}
.testimonial-card,
.testimonial-card:nth-child(2) {
    min-width: 0;
    max-width: none;
    min-height: 0;
    padding: 18px 20px;
}
.testimonial-card .quote { margin: 11px 0 15px; font-size: .9rem; line-height: 1.35; }

/* Estado final simplificado */
.benefits { padding: 42px 0 46px; }
.benefits .middle-section-heading { margin-bottom: 20px; }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 8px;
}
.benefit-item {
    display: grid;
    min-height: 0;
    padding: 14px 15px;
    grid-template-columns: 32px 1fr;
    column-gap: 11px;
    align-items: center;
    border-radius: 13px;
}
.benefit-item i {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 32px;
    height: 32px;
    margin: 0;
}
.benefit-item h4 { grid-column: 2; margin: 0 20px 2px 0; font-size: .9rem; }
.benefit-item p { grid-column: 2; font-size: .62rem; line-height: 1.35; }
.benefit-number { top: 10px; right: 10px; font-size: .5rem; }

.flavors { padding: 72px 0 66px; color: #173621; background: #f8faf7; }
.flavors-heading h2,
.flavors-heading h2 em { color: #173621; }
.flavors-heading h2 em { color: #6d8c74; }
.flavors-heading .middle-kicker { color: #54725c; }
.flavors-heading > p { color: #68736b; }
.flavors-grid { gap: 42px; padding: 4px 0 12px; }
.flavor-card,
.flavor-card:nth-child(even) {
    flex: 0 0 205px;
    min-width: 205px;
    max-width: 205px;
    height: auto;
    min-height: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    color: #173621;
    background: transparent;
    box-shadow: none;
}
.flavor-card:hover,
.flavor-card:nth-child(even):hover { border: 0; transform: translateY(-4px); }
.flavor-img {
    height: 225px;
    margin: 0 0 8px;
    filter: drop-shadow(0 13px 10px rgba(20,45,27,.14));
    mix-blend-mode: multiply;
    transform: none;
}
.flavor-card:hover .flavor-img { transform: scale(1.025); }
.flavor-index,
.flavor-arrow { display: none; }
.flavor-name { padding: 0; color: #173621; font-size: .92rem; text-align: center; }
.flavor-name small { font-size: .5rem; }

.testimonials { padding: 62px 0; }
.testimonials-heading-row .carousel-controls { display: none; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0;
    overflow: visible;
}
.testimonial-card,
.testimonial-card:nth-child(2) {
    min-width: 0;
    max-width: none;
    min-height: 0;
    padding: 18px 20px;
}
.testimonial-card .quote { margin: 11px 0 15px; font-size: .9rem; line-height: 1.35; }

/* ========================================
   SIMPLIFICAÇÃO FINAL — MENOS CAIXAS, MAIS PRODUTO
   ======================================== */
.benefits {
    padding: 42px 0 46px;
}

.benefits .middle-section-heading {
    margin-bottom: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 8px;
}

.benefit-item {
    display: grid;
    min-height: 0;
    padding: 14px 15px;
    grid-template-columns: 32px 1fr;
    column-gap: 11px;
    align-items: center;
    border-radius: 13px;
}

.benefit-item i {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 32px;
    height: 32px;
    margin: 0;
}

.benefit-item h4 {
    grid-column: 2;
    margin: 0 20px 2px 0;
    font-size: .9rem;
}

.benefit-item p {
    grid-column: 2;
    font-size: .62rem;
    line-height: 1.35;
}

.benefit-number {
    top: 10px;
    right: 10px;
    font-size: .5rem;
}

.flavors {
    padding: 72px 0 66px;
    color: #173621;
    background: #f8faf7;
}

.flavors-heading h2,
.flavors-heading h2 em {
    color: #173621;
}

.flavors-heading h2 em {
    color: #6d8c74;
}

.flavors-heading .middle-kicker {
    color: #54725c;
}

.flavors-heading > p {
    color: #68736b;
}

.flavors-grid {
    gap: 42px;
    padding: 4px 0 12px;
}

.flavor-card,
.flavor-card:nth-child(even) {
    flex: 0 0 205px;
    min-width: 205px;
    max-width: 205px;
    height: auto;
    min-height: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    color: #173621;
    background: transparent;
    box-shadow: none;
}

.flavor-card:hover,
.flavor-card:nth-child(even):hover {
    border: 0;
    transform: translateY(-4px);
}

.flavor-img {
    height: 225px;
    margin: 0 0 8px;
    filter: drop-shadow(0 13px 10px rgba(20,45,27,.14));
    mix-blend-mode: multiply;
    transform: none;
}

.flavor-card:hover .flavor-img {
    transform: scale(1.025);
}

.flavor-index,
.flavor-arrow {
    display: none;
}

.flavor-name {
    padding: 0;
    color: #173621;
    font-size: .92rem;
    text-align: center;
}

.flavor-name small {
    font-size: .5rem;
}

.testimonials {
    padding: 62px 0;
}

.testimonials-heading-row .carousel-controls {
    display: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0;
    overflow: visible;
}

.testimonial-card,
.testimonial-card:nth-child(2) {
    min-width: 0;
    max-width: none;
    min-height: 0;
    padding: 18px 20px;
}

.testimonial-card .quote {
    margin: 11px 0 15px;
    font-size: .9rem;
    line-height: 1.35;
}

/* ========================================
   REFINO DE PROPORÇÃO, PALETA E CARROSSÉIS
   ======================================== */
.middle-section-heading {
    gap: 36px;
    margin-bottom: 34px;
}

.middle-section-heading h2,
.deal-summary h2,
.lifestyle-text h2 {
    font-size: clamp(2.8rem, 4.2vw, 4.45rem);
    letter-spacing: -3px;
}

.benefits,
.flavors,
.why-closed,
.testimonials {
    padding: 78px 0;
}

.benefits-heading h2 em {
    color: #66856e;
}

.benefits-grid {
    grid-template-rows: repeat(2, minmax(155px, 1fr));
    gap: 11px;
}

.benefit-item {
    min-height: 155px;
    padding: 22px;
}

.benefit-item.benefit-featured {
    min-height: 321px;
    padding: 29px;
}

.benefit-featured::before {
    font-size: 5.3rem;
}

.benefit-item i {
    width: 36px;
    height: 36px;
    margin-bottom: 15px;
    color: #315d3d;
}

.benefit-featured i {
    width: 48px;
    height: 48px;
    color: #173a24;
    background: #dce9df;
}

.benefit-item h4 {
    font-size: 1.04rem;
}

.benefit-featured h4 {
    font-size: 2rem;
}

.benefit-item p {
    font-size: .72rem;
}

.flavors-heading h2 em {
    color: #b8d3be;
}

.carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin: -6px 0 18px;
}

.carousel-button {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    color: #fff;
    background: transparent;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, opacity .2s ease;
}

.carousel-button:hover:not(:disabled) {
    color: #173621;
    background: #fff;
}

.carousel-button:disabled {
    cursor: default;
    opacity: .28;
}

.flavors-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    padding: 10px 2px 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.flavors-grid::-webkit-scrollbar,
.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.flavor-card,
.flavor-card:nth-child(even) {
    flex: 0 0 calc((100% - 24px) / 3.25);
    max-width: none;
    height: 340px;
    padding: 15px;
    transform: none;
    scroll-snap-align: start;
}

.flavor-card:nth-child(even):hover,
.flavor-card:hover {
    transform: translateY(-5px);
}

.flavor-img {
    height: 215px;
}

.flavor-name {
    font-size: 1rem;
}

.why-closed {
    color: #173621;
    background: #fff;
    border-top: 1px solid #e3e8e3;
    border-bottom: 1px solid #e3e8e3;
}

.deal-layout {
    gap: 48px;
}

.deal-summary .middle-kicker,
.deal-summary h2,
.deal-summary h2 em {
    color: #173621;
}

.deal-summary h2 em {
    color: #6d8b74;
}

.deal-math {
    margin: 25px 0 22px;
}

.deal-math > div {
    padding: 11px 13px;
    border-color: #dce4dd;
    background: #f4f7f4;
}

.why-grid {
    gap: 10px;
}

.why-item {
    min-height: 148px;
    padding: 20px;
    border-color: #dce4dd;
    background: #f6f8f5;
}

.why-item i,
.why-item h4 {
    color: #23492e;
}

.why-item h4 {
    margin: 13px 0 6px;
    font-size: 1.04rem;
}

.why-item p {
    color: #667168;
    font-size: .7rem;
}

.lifestyle,
.lifestyle-grid {
    min-height: 570px;
}

.testimonials {
    background: #f4f6f2;
}

.testimonials-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.testimonials .section-title {
    margin: 0;
    font-size: clamp(2.3rem, 3.5vw, 3.6rem);
    text-align: left;
}

.testimonials-heading-row .carousel-controls {
    margin: 0;
}

.testimonials-heading-row .carousel-button {
    border-color: #bdcbbf;
    color: #173621;
}

.testimonials-heading-row .carousel-button:hover:not(:disabled) {
    color: #fff;
    background: #173621;
}

.testimonials-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    padding: 5px 2px 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonial-card,
.testimonial-card:nth-child(2) {
    flex: 0 0 calc((100% - 12px) / 2.2);
    min-height: 220px;
    padding: 24px;
    border: 1px solid #dfe6df;
    color: #173621;
    background: #fff;
    box-shadow: none;
    transform: none;
    scroll-snap-align: start;
}

.testimonial-card:nth-child(2) .quote,
.testimonial-card:nth-child(2) .author-info h5 {
    color: #173621;
}

.testimonial-card:nth-child(2) .author-info span {
    color: var(--text-gray);
}

.testimonial-card .quote {
    margin: 16px 0 20px;
    font-size: 1rem;
}

/* Regras finais: compactação e ritmos aprovados */
.benefits {
    padding: 48px 0 54px;
}

.benefits .middle-section-heading {
    margin-bottom: 24px;
}

.benefits .middle-section-heading h2 {
    font-size: clamp(2.2rem, 3.1vw, 3.25rem);
}

.benefits-grid {
    grid-template-columns: 1.5fr repeat(4, 1fr);
    grid-template-rows: 190px;
    gap: 9px;
}

.benefit-item,
.benefit-item.benefit-featured {
    grid-column: auto;
    grid-row: auto;
    min-height: 190px;
    padding: 18px;
}

.benefit-item h4,
.benefit-featured h4 {
    font-size: 1rem;
}

.benefit-item p,
.benefit-featured p {
    font-size: .66rem;
}

.flavors .carousel-controls {
    display: none;
}

.flavors-grid {
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.flavor-card,
.flavor-card:nth-child(even) {
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
}

.testimonials-grid {
    overflow-x: hidden;
}

.testimonial-card,
.testimonial-card:nth-child(2) {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
}
