*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);
    color:#333;
}

.container{
    max-width:1100px;
    margin:40px auto;
    background:rgba(255,255,255,.97);
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.20);
}

.hero{
    padding:50px 30px;
    text-align:center;
    background:linear-gradient(135deg,#667eea,#764ba2);
    color:white;
}
.hero-logo{
    height:100px;
    margin-bottom:15px;
}

.hero h1{
    font-size:56px;
    margin-bottom:10px;
}

.hero-text{
    font-size:22px;
    max-width:700px;
    margin:auto;
    opacity:.95;
}

.hero-products{
    margin:25px -30px;
    margin-bottom:25px;
}



.hero-products img{
    width:100%;
    display:block;
}

.hero-highlight{
    margin-top:25px;

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
}

.hero-highlight i{
    font-size:18px;
}
.section{
    padding:40px 40px;
}

h2{
    text-align:center;
    margin-bottom:35px;
    font-size:34px;
}

h3{
    margin-bottom:10px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.card{
    background:white;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

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

.cta-buttons{
    display:flex;
    gap:15px;
    justify-content:center;
    flex-wrap:wrap;
    margin-top:20px;
}

.btn-primary,
.btn-whatsapp{
    text-decoration:none;
    color:white;
    padding:15px 28px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    display:inline-flex;
    align-items:center;
    gap:8px;
}

.btn-whatsapp{
    background:#25D366;
}

.btn-primary:hover,
.btn-whatsapp:hover{
    transform:translateY(-3px);
}

.brands{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.brand-tag{
    background:linear-gradient(135deg,#667eea,#764ba2);
    color:white;
    text-decoration:none;
    padding:12px 20px;
    border-radius:50px;
    font-weight:600;
}

.faq-item{
    background:#f7f8fc;
    padding:25px;
    border-radius:14px;
    margin-bottom:15px;
}

.faq-item h3{
    color:#667eea;
}

.seo-content p{
    margin-bottom:20px;
    line-height:1.8;
}

.cta-final{
    margin:40px;
    border-radius:24px;
    padding:60px 30px;
    text-align:center;

    background:linear-gradient(
        135deg,
        #667eea,
        #764ba2
    );

    color:white;
}
.cta-final h2{
    color:white;
    margin-bottom:15px;
}
.cta-final p{
    max-width:700px;
    margin:0 auto 30px;
    opacity:.95;
}

footer{
    background:#1c1c1c;
    color:white;
    text-align:center;
    padding:60px 20px;
}

footer p{
    margin-top:10px;
    opacity:.8;
}

@media(max-width:768px){

    .hero h1{
        font-size:40px;
    }

    .hero-text{
        font-size:18px;
    }

    .section{
        padding:40px 20px;
    }

}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.product-card{
    background:white;
    border-radius:18px;
    overflow:hidden;
    text-decoration:none;
    color:#333;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.product-card h3{
    padding:20px 20px 5px;
}

.product-card p{
    padding:0 20px 20px;
}

.brand-gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.brand-item{
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    height:180px;
}

.brand-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.trust-bar{
    margin-top:25px;
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
    font-size:14px;
    opacity:.9;
}

details{
    background:#f7f8fc;
    border-radius:14px;
    padding:20px;
}

summary{
    cursor:pointer;
    font-weight:700;
    color:#667eea;
}

.btn-ml{
    background:#FFD600 !important;
    color:#000 !important;
}

.seo-hidden{
    display:none;
}

.mini-faq{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:15px;
    padding:0 40px 40px;
}

.mini-faq-item{
    background:#f7f8fc;
    padding:18px;
    border-radius:14px;
    text-align:center;
    font-weight:600;
}

.btn-whatsapp{
    background:#25D366;
    display:inline-flex;
    align-items:center;
    gap:8px;
}

.btn-whatsapp i{
    font-size:20px;
}
