/* ==================================================
   VARIÁVEIS
================================================== */
:root{
    --black:#000;
    --dark:#0b0b0b;
    --gold:#d8c21a;
    --gold-dark:#bba70f;
    --white:#fff;
    --soft:#f5f5f5;
    --text:#222;
    --purple:#5932ff;
}

/* ==================================================
   BASE
================================================== */
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
    font-family:Arial,Helvetica,sans-serif;
    color:var(--text);
    background:var(--white);
}
a{text-decoration:none;}
img{max-width:100%;height:auto;}

/* ==================================================
   BOTÕES
================================================== */
.btn-gold{
    background:var(--gold);
    color:#000;
    border:1px solid var(--gold);
    font-weight:900;
    border-radius:50px;
    padding:12px 26px;
}
.btn-gold:hover{
    background:var(--gold-dark);
    border-color:var(--gold-dark);
    color:#000;
}
.btn-dark-custom{
    background:#000;
    color:#fff;
    border-radius:50px;
    padding:12px 26px;
    font-weight:900;
}
.btn-dark-custom:hover{
    background:#222;
    color:#fff;
}

/* ==================================================
   HEADER
================================================== */
.site-header{
    background:var(--black);
    padding:30px 0;
}
.site-logo{
    max-width:380px;
    width:100%;
    height:auto;
}

/* ==================================================
   HERO
================================================== */
.hero-section{
    background:linear-gradient(135deg,#000,#151515);
    color:#fff;
    padding:78px 0;
}
.hero-section h1{
    font-size:clamp(2.1rem,5vw,4.5rem);
    font-weight:900;
    line-height:1;
    text-transform:uppercase;
    margin-bottom:18px;
}
.hero-section p{
    font-size:1.15rem;
    color:#ddd;
    max-width:760px;
    margin:0 auto;
}

/* ==================================================
   SEÇÕES GERAIS
================================================== */
.section-padding{padding:74px 0;}
.bg-light-soft{background:var(--soft);}
.section-title{
    max-width:780px;
    margin:0 auto 36px;
}
.section-title h2,
.hidrogel-section h2,
.social-section h2,
#contato h2{
    font-weight:900;
    text-transform:uppercase;
    line-height:1.05;
}
.section-title p,
.social-section p,
#contato p{
    color:#666;
}
.section-badge{
    display:inline-block;
    background:var(--gold);
    color:#000;
    border-radius:50px;
    padding:7px 14px;
    margin-bottom:14px;
    font-size:.78rem;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.06em;
}

/* ==================================================
   PRODUTOS
================================================== */
.products-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}
.product-row{
    display:grid;
    grid-template-columns:155px 1fr;
    align-items:center;
    gap:22px;
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:22px;
    padding:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}
.product-row img{border-radius:18px;}
.product-row h3{
    font-size:1.35rem;
    font-weight:900;
    margin-bottom:8px;
}
.product-row p{
    margin:0;
    color:#666;
}

/* ==================================================
   HIDROGEL
================================================== */
.hidrogel-section{background:var(--gold);}
.hidrogel-img{
    width:100%;
    border-radius:26px;
    box-shadow:0 18px 45px rgba(0,0,0,.18);
}
.highlight-box{
    background:#fff;
    border-radius:24px;
    padding:36px;
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}
.highlight-box span{
    font-weight:900;
    text-transform:uppercase;
    font-size:.8rem;
    color:#777;
}
.highlight-box p{
    color:#555;
    margin-bottom:24px;
}

/* ==================================================
   ICON BOX / SERVIÇOS
================================================== */
.icon-box,
.service-card,
.contact-card{
    height:100%;
    background:#fff;
    border-radius:20px;
    padding:26px;
    border:1px solid #e8e8e8;
    box-shadow:0 10px 28px rgba(0,0,0,.06);
}
.icon-box i,
.service-card i{
    display:block;
    color:#000;
    font-size:2rem;
    margin-bottom:12px;
}
.icon-box h3,
.service-card h3{
    font-size:1.05rem;
    font-weight:900;
    margin-bottom:8px;
}
.icon-box p,
.service-card p{
    color:#666;
    margin:0;
    font-size:.95rem;
}

/* ==================================================
   REDES SOCIAIS
================================================== */
.social-section{
    background:#000;
    color:#fff;
}
.social-section p{color:#ddd;}
.social-icons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:22px;
}
.social-icons a{
    color:#fff;
    font-size:2rem;
    line-height:1;
}
.social-icons a:hover{color:var(--gold);}

/* ==================================================
   LOCALIZAÇÃO E CONTATO
================================================== */
.contact-card p{
    display:flex;
    align-items:flex-start;
    gap:14px;
    font-size:1.05rem;
    color:#333;
    margin-bottom:22px;
}
.contact-card i{
    color:var(--gold-dark);
    font-size:1.5rem;
}
.map-frame{
    width:100%;
    min-height:360px;
    border:0;
    border-radius:20px;
    filter:grayscale(15%);
}

/* ==================================================
   RODAPÉ
================================================== */
.site-footer{
    background:#000;
    color:#ddd;
    padding:42px 0;
}
.footer-logo{
    max-width:250px;
    width:100%;
    height:auto;
    margin-bottom:18px;
}
.footer-social{margin-bottom:18px;}
.site-footer small{color:#aaa;}
.tecn72-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-left:6px;
    font-weight:900;
    color:var(--purple);
    letter-spacing:.02em;
    vertical-align:middle;
}
.tecn72-link img{
    display:block;
    width:30px;
    height:30px;
    object-fit:contain;
    border-radius:50%;
}
.tecn72-link:hover{color:#fff;}

/* ==================================================
   RESPONSIVO
================================================== */
@media(max-width:991px){
    .products-list{grid-template-columns:1fr;}
}

@media(max-width:767px){
    .site-header{padding:22px 0;}
    .site-logo{max-width:300px;}
    .hero-section{padding:56px 0;}
    .section-padding{padding:56px 0;}
    .product-row{
        grid-template-columns:110px 1fr;
        gap:16px;
        padding:14px;
    }
    .product-row h3{font-size:1.1rem;}
    .highlight-box{padding:24px;}
    .map-frame{min-height:300px;}
}
/* ==================================================
   NOVIDADES DA SEMANA
================================================== */
.weekly-showcase{
    overflow:hidden;
    background:
        radial-gradient(circle at 50% 0,rgba(216,194,26,.11),transparent 30%),
        #fff;
}
.weekly-showcase__heading{
    max-width:820px;
    margin:0 auto 34px;
}
.weekly-showcase__eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--gold-dark);
    font-size:clamp(1.35rem,3vw,2.15rem);
    font-weight:900;
    letter-spacing:.08em;
    line-height:1;
    text-transform:uppercase;
}
.weekly-showcase__eyebrow::before,
.weekly-showcase__eyebrow::after{
    content:"";
    width:86px;
    height:2px;
    background:var(--gold);
}
.weekly-showcase__heading h2{
    margin:5px 0 8px;
    color:#000;
    font-size:clamp(2.8rem,7vw,5.7rem);
    font-weight:900;
    letter-spacing:-.055em;
    line-height:.9;
    text-transform:uppercase;
}
.weekly-showcase__heading p{
    margin:0;
    color:#333;
    font-size:clamp(1rem,2vw,1.35rem);
}
.weekly-products{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:24px;
}
.weekly-product-card{
    display:flex;
    min-width:0;
    flex-direction:column;
    overflow:hidden;
    background:#fff;
    border:1px solid #e7e7e7;
    border-radius:24px;
    box-shadow:0 16px 42px rgba(0,0,0,.09);
    transition:transform .25s ease,box-shadow .25s ease;
}
.weekly-product-card:hover{
    transform:translateY(-5px);
    box-shadow:0 22px 52px rgba(0,0,0,.13);
}
.weekly-product-card__media{
    position:relative;
    overflow:hidden;
    aspect-ratio:4/3;
    background:#f4f4f4;
}
.weekly-product-card__media img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .35s ease;
}
.weekly-product-card:hover .weekly-product-card__media img{transform:scale(1.025);}
.weekly-product-card__badge{
    position:absolute;
    top:16px;
    left:16px;
    z-index:1;
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:7px 12px;
    color:#000;
    background:var(--gold);
    border-radius:8px;
    box-shadow:0 6px 16px rgba(0,0,0,.15);
    font-size:.76rem;
    font-weight:900;
    letter-spacing:.03em;
    line-height:1;
    text-transform:uppercase;
}
.weekly-product-card__body{
    display:flex;
    flex:1;
    flex-direction:column;
    padding:22px;
    text-align:center;
}
.weekly-product-card__body h3{
    margin:0 0 12px;
    color:#111;
    font-size:1.25rem;
    font-weight:900;
    line-height:1.15;
    text-transform:uppercase;
}
.weekly-product-card__body h3::after{
    content:"";
    display:block;
    width:54px;
    height:2px;
    margin:12px auto 0;
    background:var(--gold);
}
.weekly-product-card__body p{
    margin:0 0 20px;
    color:#555;
    font-size:.96rem;
    line-height:1.55;
}
.weekly-product-card__button{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    width:100%;
    margin-top:auto;
    padding:12px 16px;
    color:#000;
    background:var(--gold);
    border:1px solid var(--gold);
    border-radius:14px;
    font-weight:900;
    text-transform:uppercase;
}
.weekly-product-card__button:hover{
    color:#fff;
    background:#000;
    border-color:#000;
}
.weekly-benefits{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:0;
    margin-top:30px;
    padding:20px 0;
    border-top:1px solid #e4e4e4;
    border-bottom:1px solid #e4e4e4;
}
.weekly-benefit{
    display:flex;
    align-items:center;
    gap:13px;
    min-width:0;
    padding:0 22px;
    border-right:1px solid #ddd;
}
.weekly-benefit:last-child{border-right:0;}
.weekly-benefit>i{
    flex:0 0 auto;
    color:var(--gold-dark);
    font-size:2rem;
}
.weekly-benefit div{min-width:0;}
.weekly-benefit strong,
.weekly-benefit span{display:block;}
.weekly-benefit strong{
    color:#111;
    font-size:.85rem;
    font-weight:900;
    line-height:1.25;
    text-transform:uppercase;
}
.weekly-benefit span{
    margin-top:3px;
    color:#666;
    font-size:.82rem;
    line-height:1.3;
}
.weekly-instagram-cta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
    margin-top:24px;
    padding:24px 30px;
    color:#fff;
    background:linear-gradient(135deg,#050505,#191919);
    border-radius:22px;
    box-shadow:0 16px 36px rgba(0,0,0,.17);
}
.weekly-instagram-cta__content{
    display:flex;
    align-items:center;
    gap:18px;
    min-width:0;
}
.weekly-instagram-cta__content>i{
    flex:0 0 auto;
    color:var(--gold);
    font-size:3.15rem;
}
.weekly-instagram-cta h3{
    margin:0 0 4px;
    font-size:1.22rem;
    font-weight:900;
    line-height:1.2;
    text-transform:uppercase;
}
.weekly-instagram-cta h3 span{color:var(--gold);}
.weekly-instagram-cta p{
    margin:0;
    color:#d2d2d2;
    font-size:.94rem;
}
.weekly-instagram-cta__button{
    display:inline-flex;
    flex:0 0 auto;
    align-items:center;
    justify-content:center;
    gap:9px;
    padding:12px 22px;
    color:#000;
    background:var(--gold);
    border:1px solid var(--gold);
    border-radius:13px;
    font-weight:900;
    text-transform:uppercase;
}
.weekly-instagram-cta__button:hover{
    color:#fff;
    background:transparent;
    border-color:var(--gold);
}

@media(max-width:991px){
    .weekly-products{grid-template-columns:repeat(2,minmax(0,1fr));}
    .weekly-product-card:last-child{grid-column:1/-1;max-width:calc(50% - 12px);width:100%;margin:0 auto;}
    .weekly-benefits{grid-template-columns:repeat(2,minmax(0,1fr));row-gap:22px;}
    .weekly-benefit:nth-child(2){border-right:0;}
    .weekly-instagram-cta{align-items:flex-start;flex-direction:column;}
}

@media(max-width:767px){
    .weekly-showcase__eyebrow::before,
    .weekly-showcase__eyebrow::after{width:42px;}
    .weekly-products{grid-template-columns:1fr;gap:18px;}
    .weekly-product-card:last-child{grid-column:auto;max-width:none;}
    .weekly-product-card__body{padding:20px 18px;}
    .weekly-benefits{grid-template-columns:1fr;padding:20px;}
    .weekly-benefit,
    .weekly-benefit:nth-child(2){padding:14px 0;border-right:0;border-bottom:1px solid #e4e4e4;}
    .weekly-benefit:first-child{padding-top:0;}
    .weekly-benefit:last-child{padding-bottom:0;border-bottom:0;}
    .weekly-instagram-cta{padding:24px 20px;}
    .weekly-instagram-cta__content{align-items:flex-start;}
    .weekly-instagram-cta__content>i{font-size:2.5rem;}
    .weekly-instagram-cta__button{width:100%;}
}

/* ==================================================
   RODAPÉ PREMIUM
================================================== */
.site-footer{
    padding:0;
    color:#f5f5f5;
    background:#050607;
}
.site-footer .container{max-width:1240px;}
.footer-benefits{
    padding:28px 0;
    border-bottom:2px solid var(--gold);
    background:linear-gradient(180deg,#0b0d0f 0%,#070809 100%);
}
.footer-benefits__grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    overflow:hidden;
    border:1px solid rgba(255,255,255,.18);
    border-radius:18px;
}
.footer-benefit{
    display:flex;
    align-items:center;
    gap:16px;
    min-width:0;
    padding:25px 22px;
    border-right:1px solid rgba(255,255,255,.16);
}
.footer-benefit:last-child{border-right:0;}
.footer-benefit>i{
    flex:0 0 auto;
    color:var(--gold);
    font-size:2.7rem;
    line-height:1;
}
.footer-benefit strong,
.footer-benefit span{display:block;}
.footer-benefit strong{
    margin-bottom:6px;
    color:#fff;
    font-size:.9rem;
    font-weight:900;
    line-height:1.25;
    text-transform:uppercase;
}
.footer-benefit span{
    color:#d1d1d1;
    font-size:.88rem;
    line-height:1.55;
}
.footer-main{padding:56px 0 50px;}
.footer-main__grid{
    display:grid;
    grid-template-columns:1.35fr .9fr .9fr 1.05fr;
    gap:42px;
    align-items:start;
}
.footer-brand__logo{
    display:block;
    width:min(100%,310px);
    height:auto;
    margin-bottom:22px;
}
.footer-brand p{
    max-width:330px;
    margin:0 0 24px;
    color:#c9c9c9;
    font-size:1rem;
    line-height:1.7;
}
.footer-whatsapp-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    min-height:54px;
    padding:13px 24px;
    color:var(--gold);
    border:1px solid var(--gold);
    border-radius:12px;
    font-weight:900;
    text-transform:uppercase;
    transition:background .2s ease,color .2s ease,transform .2s ease;
}
.footer-whatsapp-button i{font-size:1.55rem;}
.footer-whatsapp-button:hover{
    color:#000;
    background:var(--gold);
    transform:translateY(-2px);
}
.footer-column h2,
.footer-store h2{
    position:relative;
    margin:0 0 26px;
    padding-bottom:14px;
    color:var(--gold);
    font-size:1rem;
    font-weight:900;
    text-transform:uppercase;
}
.footer-column h2::after,
.footer-store h2::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:40px;
    height:3px;
    background:var(--gold);
}
.footer-column ul{
    display:grid;
    gap:13px;
    margin:0;
    padding:0;
    list-style:none;
}
.footer-column a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#e2e2e2;
    font-size:.96rem;
    line-height:1.4;
}
.footer-column a i{
    color:#fff;
    font-size:.75rem;
    transition:transform .2s ease,color .2s ease;
}
.footer-column a:hover{color:var(--gold);}
.footer-column a:hover i{
    color:var(--gold);
    transform:translateX(3px);
}
.footer-store{padding-left:32px;border-left:1px solid rgba(255,255,255,.14);}
.footer-store__item{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:25px;
}
.footer-store__item:last-child{margin-bottom:0;}
.footer-store__item>i{
    flex:0 0 auto;
    color:var(--gold);
    font-size:2rem;
    line-height:1;
}
.footer-store address{
    margin:0;
    color:#e1e1e1;
    font-style:normal;
    line-height:1.75;
}
.footer-store strong,
.footer-store span{display:block;}
.footer-store strong{
    margin-bottom:9px;
    color:var(--gold);
    font-size:.9rem;
    text-transform:uppercase;
}
.footer-store span{
    color:#e1e1e1;
    line-height:1.75;
}
.footer-bottom{
    padding:22px 0;
    border-top:2px solid var(--gold);
    background:#030405;
}
.footer-bottom__grid{
    display:grid;
    grid-template-columns:1fr 1.7fr 1.1fr auto;
    gap:28px;
    align-items:center;
}
.footer-security{
    display:flex;
    align-items:center;
    gap:14px;
    padding-right:26px;
    border-right:1px solid rgba(255,255,255,.16);
}
.footer-security>i{
    color:var(--gold);
    font-size:2.2rem;
}
.footer-security strong,
.footer-security span{display:block;}
.footer-security strong{
    color:#fff;
    font-size:.82rem;
    text-transform:uppercase;
}
.footer-security span{
    margin-top:5px;
    color:#bdbdbd;
    font-size:.82rem;
}
.footer-payments>strong{
    display:block;
    margin-bottom:10px;
    color:#fff;
    font-size:.82rem;
    text-transform:uppercase;
}
.footer-payment-list{display:flex;flex-wrap:wrap;gap:8px;}
.footer-payment-list span{
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:8px 10px;
    color:#eee;
    border:1px solid rgba(255,255,255,.24);
    border-radius:8px;
    font-size:.78rem;
}
.footer-payment-list i{color:var(--gold);}
.footer-copyright{
    display:flex;
    flex-direction:column;
    gap:5px;
    color:#d3d3d3;
    font-size:.82rem;
    line-height:1.4;
}
.footer-links{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:10px;
}
.footer-links>a{
    display:grid;
    width:46px;
    height:46px;
    flex:0 0 46px;
    place-items:center;
    overflow:hidden;
    color:#fff;
    font-size:2rem;
    line-height:1;
    transition:color .2s ease,transform .2s ease;
}
.footer-links>a:hover{
    color:var(--gold);
    transform:translateY(-2px);
}
.footer-tecn72 img{
    display:block;
    width:34px;
    height:34px;
    object-fit:contain;
    border-radius:50%;
}
.footer-links>.footer-tecn72{padding:0;}
.footer-links>.footer-tecn72:hover{transform:translateY(-2px);}

@media(max-width:1100px){
    .footer-benefits__grid{grid-template-columns:repeat(2,minmax(0,1fr));}
    .footer-benefit:nth-child(2){border-right:0;}
    .footer-benefit:nth-child(-n+2){border-bottom:1px solid rgba(255,255,255,.16);}
    .footer-main__grid{grid-template-columns:1.2fr 1fr 1fr;}
    .footer-store{grid-column:1/-1;padding:28px 0 0;border-left:0;border-top:1px solid rgba(255,255,255,.14);}
    .footer-store{display:grid;grid-template-columns:1fr 1fr;column-gap:36px;}
    .footer-store h2{grid-column:1/-1;}
    .footer-bottom__grid{grid-template-columns:1fr 1.4fr;}
    .footer-copyright{padding-top:18px;border-top:1px solid rgba(255,255,255,.14);}
    .footer-links{padding-top:18px;border-top:1px solid rgba(255,255,255,.14);}
}

@media(max-width:767px){
    .footer-benefits{padding:20px 0;}
    .footer-benefits__grid{grid-template-columns:1fr;}
    .footer-benefit,
    .footer-benefit:nth-child(2){border-right:0;border-bottom:1px solid rgba(255,255,255,.16);}
    .footer-benefit:last-child{border-bottom:0;}
    .footer-benefit{padding:20px;}
    .footer-benefit>i{font-size:2.25rem;}
    .footer-main{padding:42px 0 36px;}
    .footer-main__grid{grid-template-columns:1fr;gap:34px;}
    .footer-brand__logo{width:min(100%,280px);}
    .footer-column h2,
    .footer-store h2{margin-bottom:20px;}
    .footer-store{display:block;grid-column:auto;padding:30px 0 0;}
    .footer-bottom__grid{grid-template-columns:1fr;gap:22px;}
    .footer-security{padding:0 0 20px;border-right:0;border-bottom:1px solid rgba(255,255,255,.16);}
    .footer-payments{padding-bottom:20px;border-bottom:1px solid rgba(255,255,255,.16);}
    .footer-copyright{padding:0;border-top:0;text-align:center;}
    .footer-links{justify-content:center;padding:0;border-top:0;}
    .footer-links>a{width:44px;height:44px;flex-basis:44px;font-size:1.9rem;}
    .footer-tecn72 img{width:32px;height:32px;}
}
