.newsletter{
    align-items:center;
}

.newsletter-visual{
    display:flex;
    align-items:center;
    justify-content:center;
}

.newsletter-visual img{
    width:100%;
    max-width:220px;
    height:auto;
    aspect-ratio:auto;
    object-fit:contain;
    background:transparent;
    border-radius:0;
    padding:0;
}

@media (max-width:860px){
    .newsletter{
        grid-template-columns:1fr;
        gap:14px;
        padding:18px;
        border-radius:14px;
    }
    .newsletter-content h2{
        font-size:1.55rem;
        line-height:1.15;
    }
    .newsletter-form{
        grid-template-columns:1fr;
        gap:10px;
    }
    .newsletter-form input,
    .newsletter-form button{
        width:100%;
    }
    .newsletter-content small{
        display:block;
        line-height:1.35;
    }
    .newsletter-visual img{
        max-width:150px;
    }
}

.section-who-oak{
    background:linear-gradient(180deg,#7e59a0 0%,#7e59a0 100%);
    color:#fff;
    position:relative;
    padding-top:98px;
}

.hero-clean{
    position:relative;
    overflow:visible;
    background:#f3eedf;
    min-height:100svh;
    padding:0;
}

.hero-banner-wrap{
    display:flex;
    justify-content:center;
    align-items:stretch;
    width:100%;
    min-height:100svh;
}

.hero-banner{
    display:block;
    width:100%;
    max-width:none;
    height:100%;
}

.hero-banner img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
    border-radius:0;
    box-shadow:none;
}

.site-header{
    position:relative;
    top:auto;
    background:transparent;
}

.is-home .site-header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:transparent;
    backdrop-filter:none;
}

.is-home .site-header .bar{
    min-height:92px;
    justify-content:flex-end;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:10px;
}

.header-icon-btn{
    width:44px;
    height:44px;
    padding:0;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.header-icon-btn svg{
    width:20px;
    height:20px;
    fill:#431154;
}

.hero-clean::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-1px;
    height:86px;
    background-repeat:no-repeat;
    background-size:100% 100%;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0 72C96 52 192 52 288 72C384 92 480 92 576 72C672 52 768 52 864 72C960 92 1056 92 1152 72C1248 52 1344 52 1440 72V120H0Z' fill='%23efe8f7'/%3E%3C/svg%3E");
    z-index:2;
    pointer-events:none;
    display:none;
}

.brand-marquee{
    position:relative;
    background:#2f0a45;
    border-top:2px solid rgba(242,186,28,.55);
    border-bottom:2px solid rgba(242,186,28,.35);
    overflow:hidden;
    white-space:nowrap;
}

.brand-marquee-inner{
    display:flex;
    width:max-content;
    animation:amazonMarquee 24s linear infinite;
    will-change:transform;
}

.brand-marquee-track{
    display:inline-flex;
    align-items:center;
    gap:26px;
    flex:0 0 auto;
    padding:10px 0 9px;
    padding-right:26px;
}

.brand-marquee-track span{
    font-size:1.05rem;
    font-weight:800;
    letter-spacing:.06em;
    color:#fff;
    text-transform:uppercase;
    font-style:italic;
    text-shadow:0 2px 6px rgba(0,0,0,.35);
}

@keyframes amazonMarquee{
    from{transform:translateX(0);}
    to{transform:translateX(-50%);}
}

.oak-zigzag{
    display:none;
}

.section-who-oak::before{
    display:none;
}

.who-oak-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:34px;
    align-items:center;
}

.who-oak-copy h2{
    color:#fff;
    font-size:clamp(2rem,3.4vw,3rem);
    margin-bottom:14px;
}

.who-oak-copy p{
    color:#f4e9ff;
    margin-bottom:14px;
    max-width:60ch;
}

.acai-chips{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:12px;
}

.acai-chips span{
    display:inline-block;
    background:#4e1f68;
    color:#f2ba1c;
    border:1px solid #a77ec8;
    border-radius:999px;
    padding:6px 12px;
    font-size:.78rem;
    font-weight:700;
}

.who-oak-visual img{
    width:100%;
    border-radius:20px;
    box-shadow:0 16px 30px rgba(35,9,49,.3);
}

.section-who-oak > .container::after{
    display:none;
}

.social-row{
    display:flex;
    gap:10px;
    margin-top:18px;
}

.social-row a{
    width:38px;
    height:38px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    background:#4e1f68;
    border:1px solid #a77ec8;
    transition:transform .2s ease,background .2s ease;
}

.social-row a:hover{
    background:#f2ba1c;
    transform:translateY(-2px);
}

.social-row svg{
    width:18px;
    height:18px;
    fill:#fff;
}

.social-row a:hover svg{
    fill:#4e1f68;
}

@media (max-width:860px){
    .hero-clean{
        min-height:100svh;
    }
    .hero-banner{
        min-height:100svh;
    }
    .hero-banner img{
        min-height:100svh;
    }
    .is-home .site-header{
        background:transparent;
        backdrop-filter:none;
    }
    .header-actions{
        gap:8px;
    }
    .header-icon-btn{
        width:40px;
        height:40px;
    }
    .who-oak-grid{
        grid-template-columns:1fr;
    }
    .social-row{
        justify-content:center;
    }
    .hero-clean::after{
        height:58px;
    }
    .brand-marquee-track{
        gap:18px;
        padding:8px 0;
        padding-right:18px;
    }
    .brand-marquee-inner{
        animation-duration:18s;
    }
    .brand-marquee-track span{
        font-size:.86rem;
    }
    .section-who-oak{
        padding-top:98px;
    }
}

/* Transicoes organicas + elementos acai em todas as sections */
.section{
    position:relative;
    overflow:hidden;
}

.section > .container{
    position:relative;
    z-index:2;
}

.section-after-products::before{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:86px;
    background-repeat:no-repeat;
    background-size:100% 100%;
    opacity:1;
    z-index:1;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0 72C96 52 192 52 288 72C384 92 480 92 576 72C672 52 768 52 864 72C960 92 1056 92 1152 72C1248 52 1344 52 1440 72V120H0Z' fill='%23efe8f7'/%3E%3C/svg%3E");
}

.section-after-products{padding-bottom:120px!important;}

.section + .section::before{
    content:"";
    position:absolute;
    top:-1px;
    left:0;
    width:100%;
    height:86px;
    background-repeat:no-repeat;
    background-size:100% 100%;
    opacity:1;
    z-index:1;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0 72C96 52 192 52 288 72C384 92 480 92 576 72C672 52 768 52 864 72C960 92 1056 92 1152 72C1248 52 1344 52 1440 72V120H0Z' fill='%233f0f58'/%3E%3C/svg%3E");
}

.section-alt::before{
    display:none;
}

.section-distribuidor::before{
    color:#7e59a0 !important;
    transform:scale(-1);
}



.section > .container::after{
    content:"";
    position:absolute;
    right:-6px;
    top:-8px;
    width:78px;
    height:78px;
    background-repeat:no-repeat;
    background-size:contain;
    opacity:.55;
    pointer-events:none;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cellipse cx='46' cy='66' rx='16' ry='19' fill='%235f0c63'/%3E%3Cellipse cx='66' cy='60' rx='16' ry='19' fill='%234e1f68'/%3E%3Cellipse cx='56' cy='79' rx='16' ry='19' fill='%237e59a0'/%3E%3Cpath d='M56 38c8-10 18-12 31-6-10 4-16 10-19 19z' fill='%232e9a51'/%3E%3C/svg%3E");
}

.section:nth-of-type(even) > .container::after{
    left:-8px;
    right:auto;
    transform:scaleX(-1);
}

.newsletter-band{
    background:#fff;
    padding:44px 0 52px;
    margin-top:0;
}

.newsletter-band .newsletter{
    box-shadow:0 10px 36px rgba(48,9,58,.08);
}

.site-footer{
    position:relative;
    overflow:hidden;
    margin-top:0;
    background:#5f0c63;
    color:#f4e9ff;
}

.site-footer::before{
    content:"";
    position:absolute;
    top:-1px;
    left:0;
    width:100%;
    height:34px;
    background-repeat:repeat-x;
    background-size:120px 34px;
    opacity:.95;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 34'%3E%3Cpath d='M0 0h120v14c-12 0-12 20-24 20S84 14 72 14 60 34 48 34 36 14 24 14 12 34 0 34z' fill='%23f2ba1c'/%3E%3C/svg%3E");
    pointer-events:none;
}

.site-footer .footer-main{
    position:relative;
    z-index:1;
    padding-top:58px;
}

.site-footer h3{
    color:#f2ba1c;
}

.site-footer p,
.site-footer li{
    color:#f4e9ff;
}

.site-footer a{
    color:#ffffff;
}

.site-footer a:hover{
    color:#f2ba1c;
}

.site-footer .footer-logo{
    width:220px;
    background:transparent;
    border-radius:0;
    padding:0;
}

.site-footer .footer-seals{
    width:100%;
    max-width:320px;
    height:auto;
    display:block;
}

.site-footer .footer-grid{
    grid-template-columns:1.2fr 1fr 1fr 1fr;
    align-items:start;
}

.site-footer .footer-grid li{
    display:flex;
    align-items:center;
    gap:8px;
}

.site-footer .footer-grid li svg{
    flex:0 0 16px;
    width:16px;
    height:16px;
}

.footer-social{
    margin-top:20px;
}

.footer-social h3{
    margin-bottom:10px;
}

.footer-social-links{
    display:flex;
    align-items:center;
    gap:12px;
}

.footer-social-links a{
    width:46px;
    height:46px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#2f5bff;
    color:#fff;
    box-shadow:0 8px 18px rgba(17,28,79,.25);
}

.footer-social-links a.social-facebook{
    background:#1877f2;
}

.footer-social-links a.social-instagram{
    background:radial-gradient(circle at 30% 107%,#fdf497 0%,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285aeb 90%);
}

.footer-social-links a.social-linkedin{
    background:#0a66c2;
}

.footer-social-links svg{
    width:22px;
    height:22px;
    fill:#fff;
}

.section-products-showcase{
    background:#f6f2fb;
}

.flavor-product-grid{
    margin-top:12px;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:16px;
}

.franchise-heading-copy{
    color:rgb(108, 75, 119)!important;
}

.flavor-card{
    border-radius:16px;
    padding:80px 12px 14px;
    box-shadow:0 12px 24px rgba(38,9,53,.14);
    text-align:center;
    border:0;
    position:relative;
    overflow:hidden;
}

.flavor-media-placeholder{
    display:none;
}

.flavor-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:120px;
    background:linear-gradient(180deg,rgba(255,255,255,.45) 0%,rgba(255,255,255,.08) 70%,rgba(255,255,255,0) 100%);
    pointer-events:none;
}

.flavor-card h3{
    margin:0 0 8px;
    color:#fff;
}

.flavor-card p{
    margin:0 0 10px;
    color:#fff;
}

.flavor-card a{
    display:inline-block;
    border-radius:999px;
    text-decoration:none;
    background:#fff;
    color:#4a1763;
    padding:8px 16px;
    font-weight:700;
    font-size:.82rem;
}

.flavor-cupuacu{
    background:rgba(79,138,47,.20);
}

.flavor-acai{
    background:rgba(95,12,99,.22);
}

.flavor-pitaya{
    background:rgba(216,73,91,.18);
}

.flavor-maracuya{
    background:rgba(227,181,47,.24);
}

.flavor-card h3,
.flavor-card p{
    color:#4a1763;
}

.newsletter-wrap{
    margin:0 auto;
    position:relative;
    z-index:3;
}

.section-distribuidor{
    margin-bottom:0;
}

.section-compact{
    padding:58px 0;
}

.section-franchise.section-compact,
.section-alt.section-compact{
    padding:86px 0;
}

.section-light{
    background:#f6f2fb;
}

.benefit-inline-list{
    margin:20px 0 8px;
    padding:0;
    list-style:none;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
}

.benefit-inline-list li{
    background:#fff;
    border:1px solid #d9c8ec;
    color:#4b145d;
    border-radius:999px;
    padding:8px 14px;
    font-weight:700;
    font-size:.82rem;
}

.respect-tag{
    text-align:center;
    color:#5f0c63;
    font-weight:800;
    margin-top:14px;
}

.section-distribuidor .btn-shop{
    margin-top:6px;
    display:inline-flex;
}

@media (max-width:860px){
    .section + .section::before{
        height:58px;
    }
    .section-after-products::before{
        height:58px;
        transform:none;
    }
    .section > .container::after{
        width:54px;
        height:54px;
        opacity:.42;
    }
    .newsletter-band{
        padding:28px 0 36px;
    }
    .site-footer::before{
        height:24px;
        background-size:84px 24px;
    }
    .site-footer .footer-main{
        padding-top:42px;
    }
    .site-footer .footer-grid{
        grid-template-columns:1fr;
    }
    .section-distribuidor{
        margin-bottom:0;
    }
    .section-compact{
        padding:44px 0;
    }
    .section-franchise.section-compact,
    .section-alt.section-compact{
        padding:68px 0;
    }
    .flavor-product-grid{
        grid-template-columns:1fr;
    }
    .benefit-inline-list{
        justify-content:flex-start;
    }
}

.franchise-inline-cta{
    margin-top:26px;
    padding-top:8px;
    text-align:center;
}

.franchise-inline-cta h3{
    color:#5f0c63;
    margin-bottom:14px;
}

.franchise-mosaic{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:14px;
}

.franchise-mosaic .mosaic-item{
    border-radius:18px;
    border:1px solid rgba(95,12,99,.14);
    box-shadow:0 14px 26px rgba(52,10,64,.12);
    background:#fff;
    overflow:hidden;
    aspect-ratio:4/5;
}

.franchise-mosaic .mosaic-item.is-wide{
    grid-column:span 2;
    aspect-ratio:8/5;
    background:linear-gradient(145deg,#5f0c63 0%,#7e59a0 100%);
    border-color:rgba(95,12,99,.4);
}

.franchise-mosaic .mosaic-item img{
    width:100%;
    height:100%;
    object-fit:contain;
    background:#2f103f;
    transition:transform .35s ease;
}

.franchise-mosaic .mosaic-item:hover img{
    transform:scale(1.04);
}

.franchise-mosaic .mosaic-item div{
    padding:12px;
    background:linear-gradient(180deg,transparent 0%,rgba(31,8,40,.8) 76%);
}

.franchise-mosaic .mosaic-item h3{
    color:#fff;
    font-size:.9rem;
}

.franchise-mosaic .mosaic-item p{
    display:none;
}

.franchise-mosaic .mosaic-item:nth-child(1){grid-column:span 1;}
.franchise-mosaic .mosaic-item:nth-child(2){grid-column:span 2;}
.franchise-mosaic .mosaic-item:nth-child(3){grid-column:span 1;}
.franchise-mosaic .mosaic-item:nth-child(4),
.franchise-mosaic .mosaic-item:nth-child(5),
.franchise-mosaic .mosaic-item:nth-child(6),
.franchise-mosaic .mosaic-item:nth-child(7){grid-column:span 1;}
.franchise-mosaic .mosaic-item:nth-child(8){grid-column:span 2;}
.franchise-mosaic .mosaic-item:nth-child(9),
.franchise-mosaic .mosaic-item:nth-child(10){grid-column:span 1;}

@media (max-width:1080px){
    .franchise-mosaic{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .franchise-mosaic .mosaic-item,
    .franchise-mosaic .mosaic-item.is-wide{
        grid-column:span 1;
        aspect-ratio:4/5;
    }
}

@media (max-width:860px){
    .franchise-mosaic{
        grid-template-columns:1fr;
    }
}

.whatsapp-float{
    background:#f2ba1c;
    color:#4a1763;
    border:1px solid rgba(74,23,99,.22);
    box-shadow:0 12px 24px rgba(118,82,6,.28);
}

.whatsapp-float img{
    background:transparent;
    border-radius:0;
    padding:0;
}

.whatsapp-float:hover{
    background:#ffd24d;
}

.whatsapp-float span{
    line-height:1.1;
    text-align:left;
}
