:root{

    --primary:#2563EB;
    --primary-hover:#1D4ED8;

    --secondary:#F59E0B;

    --background:#F8FAFC;

    --white:#FFFFFF;

    --title:#1F2937;

    --text:#6B7280;

    --dark:#111827;

    --border:#E5E7EB;

    --shadow:0 15px 40px rgba(0,0,0,.08);

}

/* =====================================================
   RESET
===================================================== */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:Arial, Helvetica, sans-serif;
    background:var(--background);
    color:var(--text);
    line-height:1.7;

}

img{

    display:block;
    width:100%;

}

a{

    text-decoration:none;

}

.container{

    width:min(1180px,92%);
    margin:auto;

}

section{

    padding:90px 0;

}

h1,h2,h3{

    color:var(--title);
    line-height:1.2;

}

h2{

    font-size:2.6rem;
    margin-bottom:20px;

}



/* =====================================================
   BOTÕES
===================================================== */

.btn-primary{

    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:16px 34px;

    background:var(--primary);
    color:white;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.btn-primary:hover{

    background:var(--primary-hover);

    transform:translateY(-3px);

}





.hero{

    position:relative;

    height:680px;

    overflow:hidden;

}

.hero img{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

   

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.55)
    );

}

.hero-content{

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    width:min(900px,90%);

    text-align:center;

    color:white;

    z-index:2;

}

.hero h1{

    color:#FFFFFF;

    font-size:4.2rem;

    font-weight:700;

    margin-bottom:25px;

    text-shadow:0 4px 18px rgba(0,0,0,.45);

}

.hero p{

    color:rgba(255,255,255,.95);

    font-size:1.25rem;

    max-width:720px;

    margin:0 auto 35px;

    text-shadow:0 2px 10px rgba(0,0,0,.35);

}


/* =====================================================
   SOBRE
===================================================== */

.grid-2{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.sobre-imagem img{

    height:500px;

    object-fit:cover;

    border-radius:25px;

    box-shadow:var(--shadow);

}

.sobre-texto p{

    margin-bottom:20px;

}





/* =====================================================
   CARROSSEL
===================================================== */

.carousel-section{

    background:white;

    overflow:hidden;

    padding:35px 0;

}

.carousel-track{

    display:flex;

    gap:25px;

    animation:scroll 28s linear infinite;

}

.carousel-item{

    flex:none;

}

.carousel-item img{

    width:220px;

    height:180px;

    object-fit:cover;

    border-radius:18px;

    box-shadow:var(--shadow);

    transition:.35s;

}

.carousel-item img:hover{

    transform:scale(1.05);

}

@keyframes scroll{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

/* =====================================================
   TÍTULOS DAS SEÇÕES
===================================================== */

.section-header{

    max-width:700px;

    margin:0 auto 60px;

    text-align:center;

}

.section-header p{

    color:var(--text);

    font-size:1.1rem;

}



/* =====================================================
   PRODUTOS
===================================================== */

.produtos{

    background:#F4F7FB;

}

.grid-3{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.produto-card{

    background:var(--white);

    border-radius:22px;

    overflow:hidden;

    border:1px solid var(--border);

    transition:.35s;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.produto-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow);

}

.produto-card img{

    width:100%;

    height:280px;

    object-fit:cover;

}

.produto-info{

    padding:28px;

}

.produto-info h3{

    font-size:1.35rem;

    margin-bottom:15px;

}

.produto-info p{

    color:var(--text);

    margin-bottom:25px;

    min-height:60px;

}

.preco{

    display:inline-block;

    padding:10px 18px;

    background:#EFF6FF;

    color:var(--primary);

    font-weight:700;

    border-radius:30px;

    font-size:1rem;

}





/* =====================================================
   ETIQUETAS DOS PRODUTOS
===================================================== */

.produto-card{

    position:relative;

}

.produto-card::before{

    content:"Novidade";

    position:absolute;

    top:18px;

    left:18px;

    background:var(--secondary);

    color:white;

    font-size:.75rem;

    font-weight:700;

    padding:8px 14px;

    border-radius:30px;

    letter-spacing:.5px;

}





/* =====================================================
   ANIMAÇÃO
===================================================== */

.produto-card:hover img{

    transform:scale(1.05);

}

.produto-card img{

    transition:.4s;

}

/* =====================================================
   CTA
===================================================== */

.cta{

    padding:90px 0;

    background:linear-gradient(135deg,#2563EB,#1D4ED8);

    color:var(--white);

    text-align:center;

}

.cta h2{

    color:var(--white);

    font-size:2.6rem;

    margin-bottom:20px;

}

.cta p{

    max-width:700px;

    margin:0 auto 35px;

    font-size:1.1rem;

    color:rgba(255,255,255,.9);

}

.cta .btn-primary{

    background:var(--white);

    color:var(--primary);

}

.cta .btn-primary:hover{

    background:#F3F4F6;

}



/* =====================================================
   CONTATO
===================================================== */

.contato{

    background:var(--white);

}

.contato-info h2{

    margin-bottom:20px;

}

.contato-info p{

    margin-bottom:15px;

}

.contato-info ul{

    list-style:none;

    margin:30px 0;

}

.contato-info li{

    margin-bottom:15px;

    color:var(--text);

}

.social-links{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.social-links a{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--primary);

    color:white;

    transition:.3s;

}

.social-links a:hover{

    background:var(--secondary);

}

.mapa iframe{

    width:100%;

    height:420px;

    border:none;

    border-radius:20px;

    box-shadow:var(--shadow);

}



/* =====================================================
   FOOTER
===================================================== */

.footer{

    background:var(--dark);

    color:#D1D5DB;

    padding:70px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:50px;

}

.footer h3,
.footer h4{

    color:white;

    margin-bottom:20px;

}

.footer ul{

    list-style:none;

}

.footer li{

    margin-bottom:12px;

}

.footer a{

    color:#D1D5DB;

    transition:.3s;

}

.footer a:hover{

    color:var(--secondary);

}

.footer-bottom{

    margin-top:50px;

    padding-top:20px;

    border-top:1px solid rgba(255,255,255,.12);

    text-align:center;

    font-size:.95rem;

}



/* =====================================================
   WHATSAPP
===================================================== */

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    z-index:999;

    transition:.3s;

}

.whatsapp-float:hover{

    transform:scale(1.1);

}



/* =====================================================
   RESPONSIVIDADE
===================================================== */

@media(max-width:900px){

    .grid-2{

        grid-template-columns:1fr;

    }

    .grid-3{

        grid-template-columns:repeat(2,1fr);

    }

    .footer-grid{

        grid-template-columns:1fr 1fr;

    }

    .hero{

        height:560px;

    }

    .hero h1{

        font-size:3rem;

    }

}

@media(max-width:600px){

    section{

        padding:60px 0;

    }

    .container{

        width:92%;

    }

    h2{

        font-size:2rem;

    }

    .hero{

        height:520px;

    }

    .hero h1{

        font-size:2.2rem;

    }

    .hero p{

        font-size:1rem;

    }

    .grid-2,
    .grid-3,
    .footer-grid{

        grid-template-columns:1fr;

    }

    .sobre-imagem img{

        height:320px;

    }

    .produto-card img{

        height:240px;

    }

    .carousel-item img{

        width:170px;

        height:140px;

    }

    .social-links{

        justify-content:center;

    }

    .footer{

        text-align:center;

    }

    .whatsapp-float{

        width:55px;

        height:55px;

        right:18px;

        bottom:18px;

    }

}