/* =========================================================
   VIRALIZA DIGITAL - STYLE.CSS PREMIUM
   Arquivo criado do zero para substituir o style.css antigo
   ========================================================= */

/* Reset */
*,
*::before,
*::after{
    box-sizing:border-box;
}

:root{
    --primary:#6a11cb;
    --secondary:#ff4d6d;
    --accent:#ec4899;
    --green:#16a34a;
    --dark:#111827;
    --text:#1f2937;
    --muted:#667085;
    --bg:#f5f7fb;
    --white:#ffffff;
    --border:#e5e7eb;
    --soft-border:#eef2ff;
    --shadow-sm:0 8px 20px rgba(15,23,42,.06);
    --shadow-md:0 16px 40px rgba(15,23,42,.10);
    --shadow-lg:0 28px 70px rgba(106,17,203,.20);
    --radius-lg:24px;
    --radius-md:18px;
    --radius-pill:999px;
}

html{
    scroll-behavior:auto;
}

body{
    margin:0;
    font-family:'Inter', Arial, sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

body::before{
    content:"";
    position:fixed;
    inset:0;
    background:
        radial-gradient(circle at 15% 6%, rgba(106,17,203,.12), transparent 28%),
        radial-gradient(circle at 86% 8%, rgba(255,77,109,.13), transparent 26%),
        radial-gradient(circle at 50% 82%, rgba(124,58,237,.07), transparent 30%);
    z-index:-1;
    pointer-events:none;
}

/* Topbar */
.topbar{
    min-height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px 18px;
    background:linear-gradient(90deg,var(--primary),var(--secondary));
    color:#fff;
    font-size:16px;
    font-weight:800;
    letter-spacing:-.2px;
}

/* Header */
.header{
    min-height:105px;
    padding:0 10%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(16px);
    border-bottom:1px solid rgba(226,232,240,.85);
    box-shadow:0 8px 28px rgba(15,23,42,.07);
    position:sticky;
    top:0;
    z-index:50;
}

.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo img{
    height:92px;
    width:auto;
    display:block;
    object-fit:contain;
}

nav{
    display:flex;
    align-items:center;
    gap:18px;
}

nav a{
    color:#344054;
    text-decoration:none;
    font-size:16px;
    font-weight:800;
    transition:color .25s ease, transform .25s ease;
}

nav a:hover{
    color:var(--primary);
    transform:translateY(-1px);
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:13px 24px;
    border-radius:var(--radius-pill);
    font-size:16px;
    font-weight:900;
    text-decoration:none;
    border:0;
    transition:transform .28s cubic-bezier(.22,.61,.36,1), box-shadow .28s ease;
}

.btn.dark{
    color:#fff !important;
    background:linear-gradient(90deg,var(--primary),var(--secondary));
    box-shadow:0 14px 32px rgba(106,17,203,.25);
}

.btn.green{
    color:#fff !important;
    background:linear-gradient(90deg,#10b981,#16a34a);
    box-shadow:0 14px 32px rgba(22,163,74,.22);
}

.btn:hover{
    transform:translateY(-2px);
}

/* Notificação */
.notification{
    position:fixed;
    top:126px;
    right:30px;
    min-width:390px;
    background:#fff;
    border-radius:22px;
    padding:18px 24px;
    box-shadow:0 24px 60px rgba(15,23,42,.18);
    border-left:5px solid var(--secondary);
    z-index:80;
    opacity:0;
    transform:translateX(120%);
    transition:opacity .35s ease, transform .35s cubic-bezier(.22,.61,.36,1);
}

.notification.show{
    opacity:1;
    transform:translateX(0);
}

.notification div{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:16px;
}

.notification b{
    color:#111827;
}

.notification #n-time{
    color:#667085;
    font-weight:500;
}

.notification p{
    margin:10px 0 0;
    font-size:16px;
    color:#344054;
    line-height:1.45;
}

/* Hero */
.hero{
    max-width:1400px;
    margin:0 auto;
    padding:88px 42px 76px;
    display:grid;
    grid-template-columns:1fr 1.05fr;
    align-items:center;
    gap:82px;
    position:relative;
}

.hero::after{
    content:"";
    width:300px;
    height:300px;
    position:absolute;
    top:60px;
    right:5%;
    background:linear-gradient(135deg,rgba(106,17,203,.18),rgba(255,77,109,.20));
    border-radius:50%;
    filter:blur(12px);
    z-index:-1;
}

.hero-text{
    max-width:640px;
}

.hero h1{
    margin:0;
    color:#101828;
    font-size:64px;
    line-height:1.04;
    font-weight:850;
    letter-spacing:-3px;
}

.hero h1 span{
    display:inline-block;
    font-weight:900;
    background:linear-gradient(90deg,var(--primary),#d63384,var(--secondary));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.hero-subtitle,
.hero p{
    margin:22px 0 0;
    max-width:620px;
    color:var(--muted);
    font-size:21px;
    line-height:1.62;
    font-weight:500;
    letter-spacing:-.3px;
}

/* CTA e prova social */
.hero-proof{
    margin-top:34px;
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:28px;
}

.cta-main{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:18px 34px;
    min-height:58px;
    border-radius:18px;
    color:#fff !important;
    text-decoration:none;
    font-size:17px;
    font-weight:900;
    letter-spacing:-.2px;
    background:linear-gradient(90deg,#6d28d9,#ec4899,#ff6b35);
    box-shadow:0 16px 36px rgba(236,72,153,.28);
    transition:transform .28s cubic-bezier(.22,.61,.36,1), box-shadow .28s ease;
}

.cta-main:hover{
    transform:translateY(-2px);
    box-shadow:0 22px 48px rgba(236,72,153,.34);
}

.proof-users{
    display:flex;
    align-items:center;
    gap:16px;
}

.avatars{
    display:flex;
    align-items:center;
}

.avatars img{
    width:52px;
    height:52px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #fff;
    margin-left:-11px;
    box-shadow:0 8px 18px rgba(15,23,42,.16);
}

.avatars img:first-child{
    margin-left:0;
}

.proof-text{
    color:#667085;
    font-size:15px;
    line-height:1.35;
    font-weight:500;
}

.proof-text strong{
    display:block;
    color:#101828;
    font-size:22px;
    font-weight:850;
    letter-spacing:-.6px;
}

/* Vídeo */
.hero-video{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
}

.video-box{
    width:650px;
    max-width:100%;
    min-height:380px;
    padding:60px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    position:relative;
    overflow:hidden;
    border-radius:30px;
    color:#fff;
    background:linear-gradient(135deg,#341076 0%,#6a11cb 45%,#ff4d6d 100%);
    border:4px solid rgba(255,255,255,.52);
    box-shadow:0 30px 70px rgba(106,17,203,.24);
}

.video-box::before{
    content:"";
    position:absolute;
    inset:-70px;
    background:radial-gradient(circle at top right,rgba(255,255,255,.30),transparent 34%);
    pointer-events:none;
}

.video-box h2{
    position:relative;
    margin:0 0 26px;
    max-width:460px;
    color:#fff;
    font-size:34px;
    line-height:1.15;
    font-weight:850;
    letter-spacing:-1px;
}

.video-box p{
    position:relative;
    margin:12px 0;
    color:rgba(255,255,255,.93);
    font-size:20px;
    font-weight:650;
    line-height:1.45;
}

/* Benefícios */
.benefits{
    max-width:1200px;
    margin:30px auto 58px;
    padding:0 18px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:18px;
}

.benefits span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:13px 26px;
    border-radius:var(--radius-pill);
    background:#fff;
    border:1px solid #eef2ff;
    box-shadow:0 10px 24px rgba(15,23,42,.07);
    color:#101828;
    font-size:16px;
    font-weight:850;
    letter-spacing:-.35px;
    white-space:nowrap;
    transition:transform .28s cubic-bezier(.22,.61,.36,1), box-shadow .28s ease;
}

.benefits span:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 34px rgba(15,23,42,.11);
}

/* Conteúdo */
main{
    max-width:1180px;
    margin:0 auto;
    padding:20px;
}

.services-title{
    text-align:center;
    margin:20px auto 0;
}

.services-title h2{
    margin:0 0 10px;
    color:#101828;
    font-size:44px;
    line-height:1.08;
    font-weight:850;
    letter-spacing:-1.6px;
}

.services-title p{
    margin:0;
    color:var(--muted);
    font-size:20px;
    line-height:1.5;
    font-weight:500;
}

/* Abas */
.tabs{
    width:100%;
    max-width:1130px;
    margin:34px auto 34px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

.tabs a{
    height:64px;
    padding:0 24px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:#fff;
    color:#344054;
    text-decoration:none;
    border:1px solid #e2e8f0;
    border-radius:18px;
    box-shadow:0 10px 24px rgba(15,23,42,.06);
    font-size:18px;
    font-weight:750;
    letter-spacing:-.35px;
    white-space:nowrap;
    transition:
        transform .28s cubic-bezier(.22,.61,.36,1),
        box-shadow .28s cubic-bezier(.22,.61,.36,1),
        border-color .28s ease,
        background .28s ease,
        color .28s ease;
}

.tabs a:hover{
    transform:translateY(-2px);
    border-color:#c4b5fd;
    box-shadow:0 16px 34px rgba(106,17,203,.14);
}

.tabs a.active{
    color:#fff;
    background:linear-gradient(90deg,var(--primary),var(--secondary));
    border-color:transparent;
    box-shadow:0 18px 42px rgba(106,17,203,.24);
}

.tab-icon{
    width:26px;
    height:26px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    line-height:1;
}

.tab-name{
    display:inline-flex;
    align-items:center;
    font-size:18px;
    font-weight:750;
    line-height:1;
}

.tab-flag,
.flag-br{
    width:18px;
    height:18px;
    border-radius:50%;
    object-fit:cover;
    box-shadow:0 2px 5px rgba(0,0,0,.16);
    flex-shrink:0;
}

/* Card produtos */
.card{
    width:100%;
    max-width:1130px;
    margin:28px auto;
    padding:38px;
    background:rgba(255,255,255,.96);
    border:1px solid rgba(226,232,240,.9);
    border-radius:28px;
    box-shadow:0 18px 45px rgba(17,24,39,.09);
    scroll-margin-top:120px;
}

.card h2{
    margin:0 0 12px;
    display:flex;
    align-items:center;
    gap:12px;
    color:#101828;
    font-size:32px;
    line-height:1.16;
    font-weight:850;
    letter-spacing:-1px;
}

.insta-box,
.insta{
    width:40px;
    height:40px;
    border-radius:13px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    flex-shrink:0;
    background:linear-gradient(45deg,#f09433,#dc2743,#8b5cf6,#285aeb);
    box-shadow:0 10px 22px rgba(220,39,67,.22);
}

.desc{
    margin:0 0 24px;
    color:#667085;
    font-size:18px;
    line-height:1.55;
    font-weight:500;
}

.products{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.product-form{
    position:relative;
}

.product{
    width:100%;
    min-height:116px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    border:2px solid transparent;
    border-radius:18px;
    padding:24px;
    color:#fff;
    text-align:left;
    cursor:pointer;
    background:linear-gradient(135deg,#111827 0%,#25115c 42%,#6a11cb 68%,#ff4d6d 100%);
    box-shadow:0 14px 30px rgba(17,24,39,.18);
    transition:transform .28s cubic-bezier(.22,.61,.36,1), box-shadow .28s ease, border-color .28s ease;
}

.product:hover{
    transform:translateY(-3px);
    border-color:rgba(255,255,255,.95);
    box-shadow:0 20px 44px rgba(106,17,203,.25);
}

.product b{
    display:block;
    font-size:28px;
    line-height:1.05;
    font-weight:850;
    letter-spacing:-.8px;
}

.product small{
    display:block;
    margin-top:4px;
    color:rgba(255,255,255,.88);
    font-size:15px;
    line-height:1.3;
    font-weight:600;
}

.price{
    text-align:right;
}

.price b{
    font-size:27px;
}

.price small{
    font-size:15px;
    font-weight:750;
}

.tag{
    position:absolute;
    top:-12px;
    right:22px;
    z-index:2;
    padding:8px 18px;
    border-radius:999px;
    color:#fff;
    background:linear-gradient(90deg,#10b981,#16a34a);
    box-shadow:0 10px 22px rgba(22,163,74,.24);
    font-size:15px;
    font-weight:900;
}

.tag.pink{
    background:linear-gradient(90deg,#e92066,#ff4d6d);
}

/* Por que escolher */
.why,
.reviews,
.faq{
    max-width:1130px;
    margin:60px auto;
    text-align:center;
}

.why{
    padding:54px 46px;
    background:#fff;
    border:1px solid #eef2ff;
    border-radius:30px;
    box-shadow:0 18px 45px rgba(17,24,39,.08);
}

.why h2,
.reviews h2,
.faq h2{
    margin:0 0 12px;
    color:#101828;
    font-size:40px;
    line-height:1.12;
    font-weight:850;
    letter-spacing:-1.4px;
}

.why-subtitle,
.reviews > p{
    margin:0;
    color:var(--muted);
    font-size:19px;
    line-height:1.55;
    font-weight:500;
}

.why-grid{
    margin-top:38px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
    text-align:center;
}

.why-card{
    min-height:240px;
    padding:30px 22px;
    background:#fff;
    border:1px solid #edf2f7;
    border-radius:24px;
    box-shadow:0 10px 26px rgba(15,23,42,.05);
    transition:transform .28s cubic-bezier(.22,.61,.36,1), box-shadow .28s ease;
}

.why-card:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 40px rgba(15,23,42,.10);
}

.why-icon{
    width:82px;
    height:82px;
    margin:0 auto 22px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:36px;
}

.purple{background:#f3e8ff;color:#7c3aed;}
.green{background:#dcfce7;color:#16a34a;}
.orange{background:#fef3c7;color:#ea580c;}
.blue{background:#dbeafe;color:#2563eb;}

.why-card h3{
    margin:0 0 12px;
    color:#101828;
    font-size:21px;
    line-height:1.2;
    font-weight:850;
    letter-spacing:-.6px;
}

.why-card p{
    margin:0;
    color:#667085;
    font-size:16px;
    line-height:1.58;
    font-weight:500;
}

.line{
    display:block;
    width:66px;
    height:4px;
    margin:24px auto 0;
    border-radius:999px;
}

.line.purple{background:#7c3aed;}
.line.green{background:#16a34a;}
.line.orange{background:#ea580c;}
.line.blue{background:#2563eb;}

.why-footer{
    margin:42px auto 0;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 28px;
    border-radius:999px;
    background:#f5f3ff;
    color:#6d28d9;
    font-size:18px;
    font-weight:850;
}

/* Reviews */
.review{
    max-width:740px;
    margin:28px auto 0;
    padding:28px;
    text-align:left;
    background:#fff;
    border:1px solid #eef2ff;
    border-radius:22px;
    box-shadow:0 16px 36px rgba(15,23,42,.07);
    color:#f59e0b;
    font-size:20px;
}

.review b{
    color:#101828;
    font-size:18px;
}

.review p{
    margin:10px 0 0;
    color:#667085;
    font-size:17px;
    line-height:1.6;
}

/* FAQ */
.faq details{
    max-width:860px;
    margin:16px auto;
    padding:22px 24px;
    background:#fff;
    border:1px solid #eef2ff;
    border-radius:18px;
    box-shadow:0 10px 24px rgba(15,23,42,.06);
    text-align:left;
    transition:transform .28s ease, box-shadow .28s ease;
}

.faq details:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 32px rgba(15,23,42,.09);
}

.faq summary{
    cursor:pointer;
    color:#101828;
    font-size:18px;
    font-weight:850;
    line-height:1.45;
}

.faq details p{
    margin:14px 0 0;
    color:#667085;
    font-size:16px;
    line-height:1.6;
}

/* Footer */
footer{
    margin-top:60px;
    padding:40px 20px;
    text-align:center;
    color:#667085;
    background:#fff;
    border-top:1px solid #e5e7eb;
}

footer .logo{
    justify-content:center;
}

footer .logo img{
    height:80px;
}

footer p{
    margin:10px 0;
    font-size:15px;
    font-weight:500;
}

footer a{
    color:#6a11cb;
    text-decoration:none;
    font-weight:750;
}

/* Checkout/Admin preservados */
.checkout{max-width:700px;margin:45px auto;}
.checkout-box{background:#fff;border-radius:24px;padding:38px;box-shadow:var(--shadow-md);border:1px solid #eef2ff;}
.checkout-box h1{margin-top:0;color:#101828;}
.checkout-box form{display:flex;flex-direction:column;gap:12px;}
.checkout-box input{padding:16px;border:1px solid #d1d5db;border-radius:12px;font-size:16px;outline:none;}
.checkout-box input:focus{border-color:var(--primary);box-shadow:0 0 0 4px rgba(106,17,203,.10);}
.checkout-box label{font-weight:850;}
.btn-submit{border:0;background:linear-gradient(90deg,var(--primary),var(--secondary));color:#fff;padding:17px;border-radius:12px;font-size:17px;font-weight:900;cursor:pointer;box-shadow:0 14px 30px rgba(106,17,203,.22);}
.summary,.pix{background:#f8fafc;border-radius:16px;padding:18px;margin:18px 0;border:1px solid #e2e8f0;}
.pix code{display:block;background:#fff;padding:15px;border-radius:10px;border:1px dashed #94a3b8;word-break:break-all;}
.muted{color:#64748b;}
.full{display:block;text-align:center;margin-top:12px;}
.error{color:#dc2626;font-weight:850;}

.admin{max-width:1300px;}
.admin table{width:100%;border-collapse:collapse;background:#fff;border-radius:14px;overflow:hidden;box-shadow:var(--shadow-md);}
.admin th,.admin td{padding:12px;border-bottom:1px solid #e5e7eb;text-align:left;}
.admin input,.admin select{padding:8px;border:1px solid #ccc;border-radius:6px;width:100%;}
.admin button{background:linear-gradient(90deg,var(--primary),var(--secondary));color:#fff;border:0;padding:8px 12px;border-radius:8px;cursor:pointer;font-weight:800;}

/* Responsivo */
@media(max-width:1180px){
    .header{padding:0 5%;}
    .hero{padding:72px 28px;gap:56px;}
    .hero h1{font-size:54px;}
}

@media(max-width:1050px){
    .hero{
        grid-template-columns:1fr;
        gap:46px;
        text-align:left;
    }

    .video-box{width:100%;}
    .tabs{grid-template-columns:repeat(2,1fr);}
    .products{grid-template-columns:repeat(2,1fr);}
    .why-grid{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:900px){
    .header{
        min-height:88px;
        padding:0 20px;
    }

    .logo img{height:70px;}
    nav{display:none;}
    .notification{
        left:12px;
        right:12px;
        top:100px;
        min-width:auto;
    }
}

@media(max-width:640px){
    .topbar{font-size:14px;}
    .hero{padding:48px 18px 44px;}
    .hero h1{
        font-size:40px;
        letter-spacing:-1.8px;
    }

    .hero-subtitle,
    .hero p{
        font-size:18px;
    }

    .hero-proof{
        align-items:flex-start;
        flex-direction:column;
    }

    .video-box{
        min-height:320px;
        padding:34px 26px;
        border-radius:24px;
    }

    .video-box h2{font-size:27px;}
    .video-box p{font-size:17px;}

    .tabs{grid-template-columns:1fr;}
    .tabs a{height:60px;}

    .card{
        padding:26px 18px;
        border-radius:24px;
    }

    .products{grid-template-columns:1fr;}

    .product{
        min-height:108px;
        padding:22px;
    }

    .product b,
    .price b{font-size:25px;}

    .why{
        padding:40px 20px;
    }

    .why h2,
    .reviews h2,
    .faq h2{
        font-size:30px;
        letter-spacing:-1px;
    }

    .why-grid{grid-template-columns:1fr;}
    .why-footer{
        border-radius:20px;
        font-size:16px;
        line-height:1.5;
    }

    .benefits span{
        width:100%;
        justify-content:center;
    }
}

@media(prefers-reduced-motion:reduce){
    *{
        animation:none !important;
        transition:none !important;
        scroll-behavior:auto !important;
    }
}


/* =========================================================
   MOBILE PREMIUM - AJUSTES FINAIS PARA CELULAR
   ========================================================= */

@media(max-width: 768px){

    body{
        background:#f6f7fb;
    }

    .topbar{
        min-height:38px;
        padding:8px 12px;
        font-size:13px;
        line-height:1.25;
        text-align:center;
    }

    .header{
        min-height:74px;
        padding:0 14px;
        justify-content:center;
        position:sticky;
        top:0;
    }

    .logo img{
        height:62px;
    }

    nav{
        display:none !important;
    }

    .notification{
        top:86px;
        left:12px;
        right:12px;
        min-width:0;
        width:auto;
        padding:14px 16px;
        border-radius:18px;
    }

    .notification div{
        font-size:14px;
    }

    .notification p{
        font-size:14px;
    }

    .hero{
        padding:38px 16px 28px;
        display:flex;
        flex-direction:column;
        gap:28px;
        text-align:center;
    }

    .hero-text{
        max-width:100%;
    }

    .hero h1{
        font-size:34px;
        line-height:1.08;
        letter-spacing:-1.6px;
    }

    .hero-subtitle,
    .hero p{
        font-size:16px;
        line-height:1.55;
        margin-top:16px;
        max-width:100%;
    }

    .hero-proof{
        margin-top:24px;
        flex-direction:column;
        align-items:center;
        gap:18px;
    }

    .cta-main{
        width:100%;
        max-width:340px;
        min-height:54px;
        padding:15px 20px;
        font-size:16px;
        border-radius:16px;
    }

    .proof-users{
        justify-content:center;
        gap:12px;
    }

    .avatars img{
        width:44px;
        height:44px;
        margin-left:-9px;
    }

    .proof-text{
        text-align:left;
        font-size:13px;
    }

    .proof-text strong{
        font-size:17px;
    }

    .hero-video{
        width:100%;
    }

    .video-box{
        width:100%;
        min-height:250px;
        padding:28px 22px;
        border-radius:22px;
        border-width:3px;
        text-align:left;
    }

    .video-box h2{
        font-size:24px;
        line-height:1.18;
        margin-bottom:18px;
    }

    .video-box p{
        font-size:16px;
        margin:9px 0;
    }

    .benefits{
        margin:20px auto 34px;
        padding:0 14px;
        gap:10px;
    }

    .benefits span{
        width:100%;
        min-height:44px;
        padding:12px 16px;
        font-size:14px;
        border-radius:14px;
        justify-content:center;
    }

    main{
        padding:14px;
    }

    .services-title{
        margin-top:12px;
    }

    .services-title h2{
        font-size:30px;
        letter-spacing:-1px;
    }

    .services-title p{
        font-size:16px;
    }

    .tabs{
        grid-template-columns:1fr !important;
        gap:12px;
        margin:24px auto;
    }

    .tabs a{
        height:56px;
        padding:0 18px;
        border-radius:15px;
        font-size:16px;
        gap:9px;
    }

    .tab-icon{
        width:22px;
        height:22px;
        font-size:22px;
    }

    .tab-name{
        font-size:16px;
    }

    .tab-flag,
    .flag-br{
        width:17px;
        height:17px;
    }

    .card{
        margin:20px auto;
        padding:22px 14px;
        border-radius:22px;
    }

    .card h2{
        font-size:24px;
        line-height:1.2;
        gap:9px;
        flex-wrap:wrap;
    }

    .insta-box,
    .insta{
        width:34px;
        height:34px;
        border-radius:11px;
    }

    .desc{
        font-size:15px;
        line-height:1.5;
        margin-bottom:18px;
    }

    .products{
        grid-template-columns:1fr !important;
        gap:16px;
    }

    .product{
        min-height:104px;
        padding:20px;
        border-radius:17px;
        gap:12px;
    }

    .product b{
        font-size:24px;
    }

    .product small{
        font-size:14px;
    }

    .price b{
        font-size:24px;
    }

    .price small{
        font-size:13px;
    }

    .tag{
        right:16px;
        top:-10px;
        padding:7px 14px;
        font-size:13px;
    }

    .why,
    .reviews,
    .faq{
        margin:42px auto;
    }

    .why{
        padding:30px 14px;
        border-radius:24px;
    }

    .why h2,
    .reviews h2,
    .faq h2{
        font-size:28px;
        line-height:1.18;
        letter-spacing:-1px;
    }

    .why-subtitle,
    .reviews > p{
        font-size:15px;
        line-height:1.5;
    }

    .why-grid{
        grid-template-columns:1fr !important;
        gap:16px;
        margin-top:28px;
    }

    .why-card{
        min-height:auto;
        padding:24px 18px;
        border-radius:20px;
    }

    .why-icon{
        width:68px;
        height:68px;
        font-size:30px;
        margin-bottom:16px;
    }

    .why-card h3{
        font-size:19px;
    }

    .why-card p{
        font-size:15px;
    }

    .why-footer{
        margin-top:28px;
        width:100%;
        padding:15px 18px;
        border-radius:18px;
        font-size:15px;
        line-height:1.45;
    }

    .review{
        padding:22px;
        border-radius:20px;
        font-size:18px;
    }

    .review p{
        font-size:15px;
    }

    .faq details{
        padding:18px;
        border-radius:16px;
    }

    .faq summary{
        font-size:16px;
    }

    .faq details p{
        font-size:15px;
    }

    footer{
        margin-top:38px;
        padding:30px 14px;
    }

    footer .logo img{
        height:62px;
    }

    .checkout{
        margin:24px 14px;
    }

    .checkout-box{
        padding:24px 16px;
        border-radius:20px;
    }

    .checkout-box h1{
        font-size:26px;
        line-height:1.2;
    }

    .checkout-box input{
        padding:14px;
        font-size:15px;
    }

    .btn-submit{
        padding:15px;
        font-size:16px;
    }

    .summary,
    .pix{
        padding:15px;
        border-radius:14px;
    }
}

@media(max-width: 390px){
    .hero h1{
        font-size:31px;
    }

    .cta-main{
        font-size:15px;
    }

    .proof-users{
        flex-direction:column;
    }

    .proof-text{
        text-align:center;
    }

    .tabs a{
        font-size:15px;
    }

    .product{
        flex-direction:column;
        align-items:flex-start;
    }

    .price{
        text-align:left;
    }
}

#qtyRange{
    width:70%;
    height:56px;
    appearance:none;
    background:#ddd;
    border-radius:999px;
    outline:none;
}

#qtyRange::-webkit-slider-thumb{
    appearance:none;
    width:82px;
    height:82px;
    border-radius:50%;
    background:#1d1f27;
    cursor:pointer;
    box-shadow:0 18px 35px rgba(0,0,0,.25);
}

#qtyRange{
    width:100%;
    height:58px;
    appearance:none;
    -webkit-appearance:none;
    background:#ddd;
    border-radius:999px;
    outline:none;
    cursor:pointer;
}

#qtyRange::-webkit-slider-thumb{
    appearance:none;
    -webkit-appearance:none;
    width:86px;
    height:86px;
    border-radius:50%;
    background:#1d1f27;
    box-shadow:0 18px 35px rgba(0,0,0,.25);
    cursor:grab;
}

#qtyRange::-webkit-slider-thumb:active{
    cursor:grabbing;
}

.range-fake{
    width:min(760px, 88%);
    margin:34px auto 24px;
}

.range-labels{
    display:flex;
    justify-content:space-between;
    padding:10px 72px 0;
    color:#222;
    font-size:22px;
    font-weight:650;
}
