@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&display=swap');
:root{
  --blue:#0645d6;--blue2:#0d5bea;--yellow:#ffc400;--green:#00aa24;--ink:#10131a;
  --muted:#6d7480;--line:#e6e8ec;--soft:#f5f7f9;--white:#fff;--danger:#ff4b2b;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Arial,Helvetica,sans-serif;background:#f7f7f5;color:var(--ink)}
a{text-decoration:none;color:inherit}
button,input,textarea,select{font:inherit}
img{max-width:100%;display:block}
.topbar{background:var(--blue);color:#fff;text-align:center;padding:9px 16px;font-size:12px;font-weight:800;letter-spacing:.4px}
.topbar span{color:var(--yellow);margin:0 12px}
.site-header{
    height:96px;
    padding:0 4.5vw;
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    border-bottom:1px solid var(--line);
    background:#fff;
    position:sticky;
    top:0;
    z-index:40;
}
.logo-link img{
    height:78px;
    max-width:280px;
    object-fit:contain;
}.logo-link{justify-self:center}.logo-link img{height:96px;max-width:220px;object-fit:contain}
.site-header nav{display:flex;gap:25px;align-items:center;font-size:14px;font-weight:700}
.site-header nav a:hover{color:var(--blue)}
.header-actions{justify-self:end;display:flex;gap:8px}.header-icon,.menu-toggle{border:0;background:none;cursor:pointer;font-size:21px}.menu-toggle{display:none}
.search-box{
    display:flex;
    gap:12px;
    padding:14px 5vw;
    margin:0;
    border-bottom:1px solid var(--line);
    background:#fff;
    position:relative;
    z-index:35;
    align-items:center;
}
.search-box.hidden{display:none}.search-box input{flex:1;padding:13px 15px;border:1px solid #ccd0d8;border-radius:8px}.search-box button{border:0;background:none;cursor:pointer;font-weight:700}
.hero{height:min(78vh,760px);min-height:520px;position:relative;overflow:hidden;background:#111;display:grid;place-items:center}
.hero video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.hero::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,#0005,#0007)}
.hero-content{
    position:relative;
    z-index:2;
    width:min(92%,900px);
    margin:0 auto;
    text-align:center;
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:6px;
    padding:20px;
    transform:translateY(-20px);
}
.hero-logo{
    width:min(460px,75vw);
    margin:0 auto 8px;
    display:block;
    filter:drop-shadow(0 10px 30px #0007);
}
.hero-content p{
   font-family:'Cormorant Garamond',serif;
    font-size:22px;
    font-weight:600;
    letter-spacing:.3px;
    line-height:1.3;
    margin:-70px 0 0;
    max-width:700px;
    color:#fff;
    text-shadow:0 2px 16px rgba(0,0,0,.55);
}
.btn{display:inline-flex;justify-content:center;align-items:center;border:0;border-radius:9px;padding:14px 22px;font-weight:900;cursor:pointer}
.btn-primary{background:var(--yellow);color:#151515}.btn-dark{background:#111;color:#fff}.btn-secondary{background:#fff;border:1px solid #d7dae0;color:#111}.full{width:100%}
.section{padding:64px 5vw}.section-soft{background:var(--soft)}
.section-head{display:flex;align-items:end;justify-content:space-between;gap:20px;margin-bottom:26px}.eyebrow{font-size:12px;font-weight:900;color:var(--green);letter-spacing:.6px}.section h2{font-size:30px;margin:5px 0 0}
.products-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:22px}
.product-card{background:#fff;border-radius:12px;overflow:hidden;position:relative;box-shadow:0 7px 25px #1110000d;border:1px solid #edf0f4}
.product-card .img-wrap{aspect-ratio:1/1;overflow:hidden;background:#fafafa}.product-card img{width:100%;height:100%;object-fit:cover;transition:.25s}.product-card:hover img{transform:scale(1.025)}
.discount-badge{position:absolute;z-index:2;left:0;top:18px;background:var(--danger);color:#fff;padding:7px 12px;border-radius:0 20px 20px 0;font-weight:900;font-size:13px}
.card-body{padding:16px 17px 20px;text-align:center}.card-title{font-size:16px;line-height:1.35;min-height:44px;margin:0 0 13px}.old-price{text-decoration:line-through;font-size:13px}.new-price{display:block;color:var(--green);font-weight:900;font-size:22px;margin-top:6px}
.categories{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.category-card{min-height:180px;padding:24px;border-radius:16px;display:flex;align-items:end;font-size:24px;font-weight:900;background:linear-gradient(135deg,#eaf1ff,#fff);border:1px solid #dfe7f8}.category-card:nth-child(2){background:linear-gradient(135deg,#fff4b8,#fff)}.category-card:nth-child(3){background:linear-gradient(135deg,#e6ffe8,#fff)}
.benefits{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}.benefit{padding:24px;background:#fff;border:1px solid var(--line);border-radius:12px}.benefit h3{margin:0 0 8px;font-size:16px}.benefit p{margin:0;color:var(--muted);line-height:1.55;font-size:14px}
.site-footer{
    padding:0;
    display:block;
    border-top:0;
}.site-footer h4{margin-top:0}.site-footer a,.site-footer p{display:block;color:#656b75;font-size:14px;line-height:1.6;margin:5px 0}.footer-brand img{height:72px;max-width:230px;object-fit:contain}.footer-bottom{text-align:center;padding:18px;border-top:1px solid var(--line);font-size:12px;color:#777}
.product-layout{display:grid;grid-template-columns:1.08fr .92fr;gap:52px;padding:46px 5vw 28px}.gallery-main{border-radius:14px;overflow:hidden;background:#f6f6f6}.gallery-main img{width:100%;aspect-ratio:1/1;object-fit:cover}.gallery-thumbs{display:flex;gap:10px;margin-top:12px;overflow:auto}.gallery-thumbs button{border:1px solid #ddd;background:#fff;padding:0;border-radius:8px;overflow:hidden;cursor:pointer}.gallery-thumbs img{width:82px;height:82px;object-fit:cover}
.product-info h1{font-size:34px;line-height:1.15;margin:9px 0 10px}.reviews-summary{display:flex;gap:10px;align-items:center;font-size:14px}.stars{color:#ffb100;letter-spacing:1px}.price-row{margin:24px 0}.price-row .old-price{font-size:15px}.price-row .new-price{font-size:31px}.installments{color:var(--muted);font-size:13px;margin-top:6px}
.buy-box{border-top:1px solid var(--line);padding-top:22px}.field-label{font-weight:900;margin:14px 0 9px}.sizes{display:flex;gap:9px;flex-wrap:wrap}.size-btn{background:#fff;border:1px solid #cfd3da;border-radius:8px;padding:11px 14px;cursor:pointer;font-weight:800}.size-btn.active{background:#111;color:#fff;border-color:#111}.size-guide{display:inline-block;margin-top:12px;text-decoration:underline;font-size:13px;font-weight:700}.buy-button{width:100%;font-size:17px;margin-top:22px;padding:17px}.microcopy{display:grid;gap:9px;margin-top:17px;color:#5f6570;font-size:13px}.microcopy div{display:flex;gap:8px}
.quick-faq{padding:28px 5vw 8px}.quick-faq .faq-grid{display:grid;gap:10px}.faq-item{border:1px solid #dce1e8;border-radius:11px;padding:15px}.faq-item h3{margin:0 0 5px;font-size:16px}.faq-item p{margin:0;color:#596070;line-height:1.45}
.product-description{padding:45px 5vw}.content-box{max-width:920px;margin:auto}.content-box p{color:#555d68;line-height:1.7}
.reviews-section{padding:52px 5vw;background:#f7f8fa}.reviews-header{display:flex;justify-content:space-between;gap:20px;align-items:end}.reviews-stats strong{font-size:38px}.review-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:25px}.review-card{background:#fff;border-radius:12px;padding:20px;border:1px solid var(--line)}.review-card p{color:#565d67;line-height:1.55}.review-photo{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:8px;margin-top:10px}
.modal{position:fixed;inset:0;display:none;z-index:90}.modal.open{display:block}.modal-overlay{position:absolute;inset:0;background:#0009}.modal-card{position:relative;z-index:2;width:min(560px,92vw);max-height:84vh;overflow:auto;margin:7vh auto;background:#fff;border-radius:14px;padding:26px}.modal-card h2{margin-top:0}.modal-card label{display:block;font-weight:800;font-size:13px;margin:14px 0 6px}.modal-card input,.modal-card textarea,.modal-card select{width:100%;padding:13px;border:1px solid #cfd4dc;border-radius:8px}.modal-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:20px}
.drawer{position:fixed;inset:0;z-index:85;pointer-events:none;opacity:0;transition:.2s}.drawer.open{opacity:1;pointer-events:auto}.drawer-overlay{position:absolute;inset:0;background:#0008}.drawer-panel{position:absolute;right:0;top:0;height:100%;width:min(450px,95vw);background:#fff;transform:translateX(100%);transition:.25s;display:flex;flex-direction:column;padding:22px}.drawer.open .drawer-panel{transform:none}.drawer-head{display:flex;justify-content:space-between;border-bottom:1px solid var(--line);padding-bottom:14px}.drawer-head h3{margin:3px 0}.drawer-head button{border:0;background:none;font-size:30px;cursor:pointer}.cart-items{flex:1;overflow:auto}.cart-row{display:grid;grid-template-columns:72px 1fr auto;gap:12px;padding:14px 0;border-bottom:1px solid var(--line)}.cart-row img{width:72px;height:86px;object-fit:cover;border-radius:7px}.cart-meta{font-size:12px;color:#666;line-height:1.5}.drawer-footer{padding-top:14px;border-top:1px solid var(--line)}.drawer-footer .btn{margin-top:8px}.subtotal{display:flex;justify-content:space-between;margin-bottom:9px}
.admin-shell{min-height:100vh;background:#f5f6f8;display:grid;grid-template-columns:230px 1fr}.admin-sidebar{background:#10131a;color:#fff;padding:25px 18px}.admin-sidebar h2{font-size:19px}.admin-sidebar a{display:block;padding:10px 11px;border-radius:7px;margin:5px 0;color:#dfe3ea}.admin-sidebar a:hover{background:#252a35}.admin-main{padding:30px}.admin-card{background:#fff;border-radius:12px;padding:22px;border:1px solid #e3e6eb;margin-bottom:18px}.admin-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:15px}.metric{font-size:27px;font-weight:900}.admin-table{width:100%;border-collapse:collapse;background:#fff}.admin-table th,.admin-table td{padding:11px;border-bottom:1px solid #e7e9ed;text-align:left;font-size:13px;vertical-align:top}.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}.form-group label{display:block;font-weight:800;font-size:13px;margin-bottom:5px}.form-group input,.form-group textarea,.form-group select{width:100%;padding:11px;border:1px solid #ccd1d9;border-radius:7px}.span-2{grid-column:span 2}.admin-actions{display:flex;gap:10px;flex-wrap:wrap}.notice{padding:12px 14px;border-radius:8px;background:#eef5ff;color:#12469a;margin-bottom:14px}
.login-page{min-height:100vh;display:grid;place-items:center;background:#f3f5f8}.login-card{width:min(390px,92vw);background:#fff;padding:28px;border-radius:13px;border:1px solid #e1e5ea}.login-card img{height:70px;margin:auto auto 16px}.login-card input{width:100%;padding:12px;margin:7px 0;border:1px solid #ccd1d9;border-radius:8px}
@media(max-width:980px){.products-grid{grid-template-columns:repeat(3,1fr)}.benefits{grid-template-columns:repeat(2,1fr)}.product-layout{grid-template-columns:1fr}.review-grid{grid-template-columns:1fr 1fr}.admin-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:760px){
  .site-header{height:72px;grid-template-columns:auto 1fr auto}.logo-link img{height:76px}.menu-toggle{display:block}.site-header nav{display:none;position:absolute;left:0;right:0;top:72px;background:#fff;padding:18px;flex-direction:column;align-items:flex-start;border-bottom:1px solid var(--line)}.site-header nav.open{display:flex}
  .search-box{top:72px}.hero{min-height:470px;height:72vh}.hero-content p{font-size:17px}.products-grid{grid-template-columns:repeat(2,1fr);gap:12px}.section{padding:45px 15px}.categories{grid-template-columns:1fr}.site-footer{grid-template-columns:1fr 1fr}.product-layout{padding:25px 15px}.product-info h1{font-size:28px}.quick-faq,.product-description,.reviews-section{padding-left:15px;padding-right:15px}.review-grid{grid-template-columns:1fr}.admin-shell{grid-template-columns:1fr}.admin-sidebar{position:static}.form-grid{grid-template-columns:1fr}.span-2{grid-column:span 1}
}
@media(max-width:470px){.card-body{padding:12px 10px 15px}.card-title{font-size:13px}.new-price{font-size:19px}.benefits,.site-footer{grid-template-columns:1fr}.section h2{font-size:25px}}

.product-content-image{width:100%;height:auto;border-radius:12px;margin:18px 0 24px;object-fit:contain;background:#fff}
.size-guide-image{max-height:none}
.category-image{
    position:relative;
    min-height:280px;
    background-size:cover !important;
    background-position:center !important;
    overflow:hidden;
    display:flex;
    align-items:flex-end;
    padding:28px;
    border:none;
}

.category-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.72),
        rgba(0,0,0,.05)
    );
}

.category-image span{
    position:relative;
    z-index:2;
    color:#fff;
    font-size:26px;
    font-weight:900;
}

.category-image{
    transition:transform .3s ease;
}

.category-image:hover{
    transform:scale(1.02);
}

@media(max-width:760px){
    .category-image{
        min-height:210px;
    }

    .category-image span{
        font-size:21px;
    }
}
/* BARRA PROMOCIONAL EM MOVIMENTO */

.topbar{
    background:#0645d6;
    color:#fff;
    overflow:hidden;
    white-space:nowrap;
    padding:0;
    height:38px;
    display:flex;
    align-items:center;
}

.topbar-track{
    display:flex;
    align-items:center;
    gap:28px;
    width:max-content;

    animation:topbarScroll 16s linear infinite;
}

.topbar-track span{
    font-size:13px;
    font-weight:900;
    letter-spacing:.4px;
}

.topbar-track b{
    color:#ffc400;
    font-size:18px;
}

@keyframes topbarScroll{
    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}
.hero-content .btn{
    transform:translateY(-35px);
}
.product-rating{
    display:flex;
    align-items:center;
    gap:7px;
    margin:12px 0 18px;
    font-size:16px;
}

.product-rating .stars{
    color:#f5bd00;
    font-size:22px;
    letter-spacing:2px;
}

.rating-number{
    font-weight:500;
}

.rating-count{
    color:#111;
    text-decoration:none;
}

.product-price-box{
    margin:16px 0 24px;
}

.product-old-price{
    color:#888;
    text-decoration:line-through;
    font-size:18px;
    margin-bottom:5px;
}

.current-price-line{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.current-price-line .new-price{
    font-size:28px;
    font-weight:800;
    color:#111;
    margin:0;
}

.discount-green{
    background:#22c63b;
    color:#fff;
    padding:7px 10px;
    border-radius:7px;
    font-size:14px;
    font-weight:800;
}

.product-price-box .installments{
    margin-top:7px;
    font-size:15px;
    color:#111;
}
.buy-box{
    margin-top:20px;
}

.field-label{
    font-size:16px;
    font-weight:800;
    margin-bottom:12px;
}

.sizes{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:14px;
}

.size-btn{
    width:44px;
    height:44px;
    border-radius:50%;
    border:1px solid #d8dee8;
    background:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.2s;
}

.size-btn:hover,
.size-btn.active{
    background:#111827;
    color:#fff;
    border-color:#111827;
}

.size-guide{
    display:inline-flex;
    align-items:center;
    gap:8px;
    border:1px solid #ff7a21;
    color:#111;
    text-decoration:none;
    padding:11px 16px;
    border-radius:24px;
    font-weight:800;
    margin:3px 0 14px;
}

.shipping-box{
    border:1px solid #e1e5ea;
    padding:15px 18px;
    margin-bottom:14px;
    display:grid;
    gap:12px;
}

.shipping-box div{
    display:flex;
    flex-direction:column;
}

.shipping-box strong{
    color:#08a93e;
    font-size:16px;
}

.shipping-box span{
    color:#667085;
    font-size:14px;
    margin-top:2px;
}

.buy-now-button{
    width:100%;
    background:#22c63b;
    color:#fff;
    border:0;
    border-radius:5px;
    padding:17px 20px;
    font-size:18px;
    font-weight:900;
    cursor:pointer;
}

.buy-benefits{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin:28px 0 20px;
    text-align:center;
}

.buy-benefits div{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
}

.buy-benefits span{
    font-size:25px;
}

.buy-benefits strong{
    font-size:13px;
    font-weight:500;
}

.payment-strip{
    border-top:1px solid #e3e6ea;
    border-bottom:1px solid #e3e6ea;
    padding:15px 0;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:8px;
}

.payment-strip img{
    width:min(100%,560px);
    height:auto;
    display:block;
    object-fit:contain;
}
.quick-faq{
    padding:50px 5vw;
    background:#fff;
}

.quick-faq .eyebrow{
    color:#0aa33a;
    font-size:13px;
    font-weight:900;
    letter-spacing:.6px;
    margin-bottom:4px;
}

.quick-faq h2{
    font-size:28px;
    margin:0 0 20px;
}

.faq-grid{
    display:grid;
    gap:12px;
}

.faq-item{
    background:#fff;
    border:1px solid #e1e6ed;
    border-radius:14px;
    padding:18px 20px;
}

.faq-item h3{
    margin:0 0 6px;
    font-size:17px;
    font-weight:800;
}

.faq-item p{
    margin:0;
    color:#667085;
    font-size:15px;
    line-height:1.5;
}
/* MOBILE */

@media(max-width:760px){

    .topbar{
        height:32px;
    }

    .topbar-track{
        gap:20px;
        animation-duration:12s;
    }

    .topbar-track span{
        font-size:11px;
    }

}
.product-old-price{
    color:#8a8a8a !important;
    text-decoration:line-through !important;
    text-decoration-thickness:1.5px !important;
    font-size:18px !important;
    margin-bottom:6px !important;
    display:block !important;
}
.payment-strip{
    margin: 18px 0 26px;
    display: flex;
    justify-content: center;
}

.payment-strip img{
    width: min(100%, 560px);
    display: block;
    border-radius: 10px;
}
.quick-faq{
    padding:56px 5vw !important;
    background:#f7f9fc !important;
}

.quick-faq .eyebrow{
    color:#0aa33a !important;
    font-size:13px !important;
    font-weight:900 !important;
    letter-spacing:.7px !important;
    margin-bottom:6px !important;
}

.quick-faq h2{
    font-size:30px !important;
    margin:0 0 24px !important;
    color:#111827 !important;
}

.faq-grid{
    display:grid !important;
    gap:14px !important;
}

.faq-item{
    background:#fff !important;
    border:1px solid #dde3ea !important;
    border-radius:16px !important;
    padding:20px 22px !important;
    box-shadow:0 3px 12px rgba(0,0,0,.04) !important;
}

.faq-item h3{
    margin:0 0 8px !important;
    font-size:18px !important;
    font-weight:800 !important;
    color:#111827 !important;
}

.faq-item p{
    margin:0 !important;
    color:#667085 !important;
    font-size:15px !important;
    line-height:1.55 !important;
}
.quick-faq{
    width:100% !important;
    max-width:840px !important;
    margin:24px auto 0 !important;
    padding:0 !important;
    background:transparent !important;
}

.quick-faq .eyebrow{
    margin:0 0 4px !important;
    color:#0aa33a !important;
    font-size:13px !important;
    font-weight:900 !important;
    letter-spacing:.2px !important;
}

.quick-faq h2{
    margin:0 0 12px !important;
    font-size:21px !important;
    line-height:1.2 !important;
    color:#101828 !important;
}

.quick-faq .faq-grid{
    display:flex !important;
    flex-direction:column !important;
    gap:9px !important;
}

.quick-faq .faq-item{
    width:100% !important;
    padding:13px 14px !important;
    margin:0 !important;
    background:#fff !important;
    border:1px solid #dfe4ea !important;
    border-radius:11px !important;
    box-shadow:none !important;
}

.quick-faq .faq-item h3{
    margin:0 0 3px !important;
    font-size:16px !important;
    line-height:1.25 !important;
    font-weight:800 !important;
    color:#111827 !important;
}

.quick-faq .faq-item p{
    margin:0 !important;
    font-size:14px !important;
    line-height:1.35 !important;
    color:#667085 !important;
}
.product-layout{
    align-items:flex-start !important;
    overflow:visible !important;
}

.product-layout > div:first-child{
    position:sticky !important;
    top:110px !important;
    align-self:flex-start !important;
    height:fit-content !important;
    overflow:visible !important;
}

@media (max-width:768px){
    .product-layout > div:first-child{
        position:static !important;
    }
}
.product-info .product-description{
    width:100% !important;
    max-width:none !important;
    margin:28px 0 0 !important;
    padding:0 !important;
    background:transparent !important;
}

.product-info .product-description .content-box{
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
    padding:0 !important;
}

.product-info .product-description .eyebrow{
    margin:0 0 6px !important;
    font-size:13px !important;
    color:#0aa33a !important;
    font-weight:900 !important;
}

.product-info .product-description h2{
    margin:0 0 14px !important;
    font-size:22px !important;
    line-height:1.25 !important;
}

.product-info .product-description h3{
    margin:22px 0 10px !important;
    font-size:18px !important;
}

.product-info .product-description p{
    margin:0 0 14px !important;
    font-size:15px !important;
    line-height:1.55 !important;
    color:#667085 !important;
}

.product-info .product-description .product-content-image{
    width:100% !important;
    height:auto !important;
    display:block !important;
    border-radius:12px !important;
    margin:14px 0 18px !important;
}
.home-banner{
  display:block;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.home-banner img{
  width:100%;
  display:block;
  object-fit:cover;
}
@media (max-width:768px){
    .home-banner{
        border-radius:14px;
    }

    .home-banner img{
        width:100%;
        height:auto;
    }
}
.benefits-clean{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.benefits-clean .benefit{
    text-align:center;
    padding:34px 24px;
    border:1px solid #e5e9ef;
    border-radius:16px;
    background:#fff;
    box-shadow:0 3px 10px rgba(0,0,0,.04);
}

.benefit-icon{
    width:34px;
    height:34px;
    margin:0 auto 18px;
    color:#ff2a15;
}

.benefit-icon{
    width:34px;
    height:34px;
    margin:0 auto 18px;
    color:#0b4fa3;
}

.benefits-clean .benefit h3{
    margin:0 0 12px;
    font-size:18px;
    font-weight:800;
    color:#064e66;
}

.benefits-clean .benefit p{
    margin:0;
    color:#6b7280;
    font-size:15px;
    line-height:1.45;
}

@media(max-width:768px){
    .benefits-clean{
        grid-template-columns:1fr 1fr;
        gap:14px;
    }

    .benefits-clean .benefit{
        padding:24px 14px;
    }
}
.benefits-clean{
    display:grid !important;
    grid-template-columns:repeat(4,1fr) !important;
    gap:28px !important;
}

.benefits-clean .benefit{
    text-align:center !important;
    padding:28px 22px !important;
    min-height:190px !important;
    border:1px solid #e5e9ef !important;
    border-radius:16px !important;
    background:#fff !important;
    box-shadow:0 3px 10px rgba(0,0,0,.04) !important;

    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:flex-start !important;
}

.benefits-clean .benefit-icon{
    width:30px !important;
    height:30px !important;
    margin:0 auto 16px !important;
    color:#0b4fa3 !important;
}

.benefits-clean .benefit-icon svg{
    width:30px !important;
    height:30px !important;

    fill:none !important;
    stroke:#0b4fa3 !important;
    stroke-width:1.8 !important;
    stroke-linecap:round !important;
    stroke-linejoin:round !important;
}

.benefits-clean .benefit-icon svg *{
    fill:none !important;
    stroke:#0b4fa3 !important;
}

.benefits-clean .benefit h3{
    margin:0 0 10px !important;
    font-size:17px !important;
    line-height:1.3 !important;
    font-weight:800 !important;
    color:#064e66 !important;
}

.benefits-clean .benefit p{
    margin:0 !important;
    font-size:14px !important;
    line-height:1.45 !important;
    color:#6b7280 !important;
    max-width:310px !important;
}

@media(max-width:768px){
    .benefits-clean{
        grid-template-columns:1fr 1fr !important;
        gap:12px !important;
    }

    .benefits-clean .benefit{
        padding:22px 12px !important;
        min-height:175px !important;
    }

    .benefits-clean .benefit h3{
        font-size:15px !important;
    }

    .benefits-clean .benefit p{
        font-size:13px !important;
    }
}
.site-footer{
    position:relative;
    margin-top:60px;
    background-image:url('../images/grama-footer.jpg');
    background-size:cover;
    background-position:center;
    color:#fff;
    overflow:hidden;
}

.footer-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,35,20,.72);
    z-index:0;
}

.footer-content{
    position:relative;
    z-index:1;
    max-width:1400px;
    margin:0 auto;
    padding:65px 5vw 45px;
    display:grid;
    grid-template-columns:1.7fr 1fr 1fr 1fr;
    gap:55px;
}

.footer-brand img{
    width:240px;
    max-width:100%;
    height:auto;
    display:block;
    margin-bottom:22px;
}

.footer-brand p{
    max-width:360px;
    color:rgba(255,255,255,.88);
    font-size:15px;
    line-height:1.6;
}

.footer-column{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.footer-column h4{
    color:#fff;
    font-size:17px;
    margin:0 0 10px;
}

.footer-column a,
.footer-column p{
    color:rgba(255,255,255,.86);
    text-decoration:none;
    margin:0;
    font-size:14px;
}

.footer-column a:hover{
    color:#ffd43b;
}

.footer-payment{
    position:relative;
    z-index:1;
    max-width:1400px;
    margin:0 auto;
    padding:18px 5vw 24px;
    border-top:1px solid rgba(255,255,255,.18);
}

.footer-payment img{
    width:420px;
    max-width:100%;
    height:auto;
    display:block;
}

.footer-bottom{
    position:relative;
    z-index:1;
    text-align:center;
    padding:18px 20px;
    border-top:1px solid rgba(255,255,255,.15);
    color:rgba(255,255,255,.72);
    font-size:13px;
}

@media(max-width:768px){
    .footer-content{
        grid-template-columns:1fr 1fr;
        gap:32px 20px;
        padding:45px 20px 30px;
    }

    .footer-brand{
        grid-column:1 / -1;
    }

    .footer-brand img{
        width:200px;
    }

    .footer-payment{
        padding:20px;
    }

    .footer-payment img{
        margin:auto;
    }
}
/* CORREÇÃO ESTRUTURA RODAPÉ */
.site-footer{
    display:block !important;
    width:100% !important;
    position:relative !important;
}

.site-footer .footer-content{
    width:100% !important;
    max-width:1400px !important;
    margin:0 auto !important;
    padding:60px 5vw 40px !important;

    display:grid !important;
    grid-template-columns:1.7fr 1fr 1fr 1fr !important;
    gap:55px !important;
}

.site-footer .footer-brand{
    display:block !important;
    width:auto !important;
}

.site-footer .footer-brand img{
    width:260px !important;
    max-width:260px !important;
    height:auto !important;
}

.site-footer .footer-payment{
    display:block !important;
    width:100% !important;
    max-width:1400px !important;
    margin:0 auto !important;
    padding:20px 5vw !important;
}

.site-footer .footer-payment img{
    width:420px !important;
    max-width:100% !important;
    height:auto !important;
}

.site-footer .footer-bottom{
    display:block !important;
    width:100% !important;
    text-align:center !important;
    padding:18px 20px !important;
}

@media(max-width:768px){
    .site-footer .footer-content{
        grid-template-columns:1fr 1fr !important;
        gap:30px 20px !important;
        padding:40px 20px 30px !important;
    }

    .site-footer .footer-brand{
        grid-column:1 / -1 !important;
    }

    .site-footer .footer-brand img{
        width:220px !important;
    }
}
.site-footer .footer-content{
    align-items:start !important;
}

.site-footer .footer-brand{
    display:flex !important;
    flex-direction:column !important;
    justify-content:flex-start !important;
    align-items:flex-start !important;
}

.site-footer .footer-brand img{
    margin:0 0 18px 0 !important;
}

.site-footer .footer-column{
    padding-top:0 !important;
    margin-top:0 !important;
}
.professional-benefits{
    display:grid !important;
    grid-template-columns:repeat(3,1fr) !important;
    gap:20px !important;
    padding:30px 0 24px !important;
    border-bottom:1px solid #e6e9ee !important;
}

.professional-benefits .benefit-mini{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:flex-start !important;
    text-align:center !important;
    gap:12px !important;
}

.professional-benefits .benefit-mini-icon{
    width:30px !important;
    height:30px !important;
    color:#142033 !important;
}

.professional-benefits .benefit-mini-icon svg{
    width:100% !important;
    height:100% !important;
    fill:none !important;
    stroke:currentColor !important;
    stroke-width:1.8 !important;
    stroke-linecap:round !important;
    stroke-linejoin:round !important;
}

.professional-benefits .benefit-mini span{
    font-size:15px !important;
    line-height:1.35 !important;
    color:#172033 !important;
}

@media(max-width:768px){
    .professional-benefits{
        gap:10px !important;
    }

    .professional-benefits .benefit-mini span{
        font-size:13px !important;
    }
}
.cart-icon svg{
    width:24px;
    height:24px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
}
.header-icon.cart-icon{
    position:relative !important;
    width:42px !important;
    height:42px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    padding:0 !important;
}

.header-icon.cart-icon svg{
    width:23px !important;
    height:23px !important;
    fill:none !important;
    stroke:#111 !important;
    stroke-width:1.8 !important;
    stroke-linecap:round !important;
    stroke-linejoin:round !important;
}

.header-icon.cart-icon #cartCount{
    position:absolute !important;
    top:2px !important;
    right:1px !important;

    min-width:17px !important;
    height:17px !important;
    padding:0 4px !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    border-radius:999px !important;
    background:#0b4fa3 !important;
    color:#fff !important;

    font-size:10px !important;
    font-weight:800 !important;
    line-height:1 !important;
}
.size-guide-modal{
    position:fixed;
    inset:0;
    z-index:9999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.size-guide-modal.active{
    display:flex;
}

.size-guide-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.58);
    backdrop-filter:blur(3px);
}

.size-guide-card{
    position:relative;
    z-index:1;
    width:min(92vw,680px);
    max-height:90vh;
    overflow:auto;
    background:#fff;
    border-radius:18px;
    padding:32px;
    box-shadow:0 24px 70px rgba(0,0,0,.25);
}

.size-guide-close{
    position:absolute;
    top:14px;
    right:16px;
    width:38px;
    height:38px;
    border:0;
    background:#f2f3f5;
    border-radius:50%;
    font-size:25px;
    line-height:1;
    cursor:pointer;
}

.size-guide-card h2{
    margin:4px 0 20px;
    font-size:26px;
}

.size-guide-modal-image{
    width:100%;
    height:auto;
    display:block;
    border-radius:12px;
}

@media(max-width:768px){
    .size-guide-card{
        padding:26px 18px 20px;
        border-radius:16px;
    }

    .size-guide-card h2{
        font-size:22px;
    }
}
.header-icon.search-icon{
    width:42px !important;
    height:42px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    padding:0 !important;
}

.header-icon.search-icon svg{
    width:22px !important;
    height:22px !important;
    fill:none !important;
    stroke:#111 !important;
    stroke-width:1.8 !important;
    stroke-linecap:round !important;
    stroke-linejoin:round !important;
}
.search-box{
    position:relative;
}

.search-results{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:0 0 12px 12px;
    box-shadow:0 12px 30px rgba(0,0,0,.14);
    z-index:9999;
    max-height:420px;
    overflow-y:auto;
}

.search-results.show{
    display:block;
}

.search-result-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:10px 12px;
    border-bottom:1px solid #eee;
    background:#fff;
}

.search-result-item:hover{
    background:#f7f7f7;
}

.search-result-item img{
    width:56px;
    height:56px;
    object-fit:cover;
    border-radius:8px;
    flex-shrink:0;
}

.search-result-item div{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.search-result-item strong{
    font-size:14px;
    color:#111;
}

.search-result-item span{
    font-size:13px;
    color:#666;
}

.search-empty{
    padding:14px;
    font-size:14px;
    color:#666;
}
@media(max-width:768px){

    .search-box{
        position:relative !important;
        top:auto !important;
        left:auto !important;
        right:auto !important;

        width:100% !important;
        margin:0 !important;
        padding:10px 12px !important;

        display:flex !important;
        align-items:center !important;
        gap:6px !important;

        background:#fff !important;
        box-sizing:border-box !important;
        z-index:9999 !important;
    }

    .search-box.hidden{
        display:none !important;
    }

    .search-box input{
        flex:1 !important;
        width:100% !important;
        min-width:0 !important;
        height:42px !important;
        padding:0 12px !important;
        box-sizing:border-box !important;
    }

    .search-box button{
        flex-shrink:0 !important;
        padding:8px 6px !important;
        font-size:13px !important;
    }

    .search-results{
        position:absolute !important;
        top:100% !important;
        left:0 !important;
        right:0 !important;

        width:100% !important;
        max-height:60vh !important;
        margin:0 !important;

        background:#fff !important;
        z-index:99999 !important;
    }
}