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

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    font-size:16px;
    line-height:1.6;
    color:#444;
    background:#fafafa;
}

img{
    display:block;
    max-width:100%;
    height:auto;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}


/* ==========================================================
   VARIÁVEIS
========================================================== */

:root{

    --primary:#D97706;
    --primary-dark:#B45309;
    --primary-light:#FBBF24;

    --background:#FAFAFA;
    --white:#FFFFFF;

    --title:#2C1810;
    --text:#555555;

    --border:#ECECEC;

    --shadow-sm:0 5px 15px rgba(0,0,0,.08);
    --shadow-md:0 12px 30px rgba(0,0,0,.12);

    --radius:16px;

    --transition:.35s ease;

}


/* ==========================================================
   CLASSES GLOBAIS
========================================================== */

.container{

    width:100%;
    max-width:1200px;

    margin:0 auto;

    padding:0 20px;

}

section{

    padding:90px 0;

}

.section-header{

    text-align:center;

    margin-bottom:60px;

}

.section-header h2{

    font-size:2.3rem;

    color:var(--title);

    margin-bottom:15px;

}

.section-header p{

    max-width:700px;

    margin:0 auto;

    color:var(--text);

    font-size:1.05rem;

}


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

.btn-primary{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:var(--primary);

    color:#fff;

    padding:14px 32px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

.btn-outline{

    display:inline-block;

    padding:14px 32px;

    border:2px solid var(--primary);

    color:var(--primary);

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}

/* ==========================================================
   HERO
========================================================== */

.hero{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    min-height:90vh;

    overflow:hidden;

}

.hero img{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .8s ease;

}

.hero:hover img{

    transform:scale(1.05);

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-content{

    max-width:650px;

    color:#fff;

}

.hero-content h1{

    font-size:4rem;

    margin-bottom:20px;

    line-height:1.1;

    font-weight:700;

}

.hero-content p{

    font-size:1.35rem;

    margin-bottom:35px;

    opacity:.95;

}


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

.about{

    background:#fff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image{

    overflow:hidden;

    border-radius:var(--radius);

    box-shadow:var(--shadow-md);

}

.about-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .6s ease;

}

.about-image:hover img{

    transform:scale(1.06);

}

.about-content h2{

    font-size:2.3rem;

    color:var(--title);

    margin-bottom:25px;

}

.about-content p{

    color:var(--text);

    margin-bottom:20px;

    text-align:justify;

}

.about-content p:last-child{

    margin-bottom:0;

}

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

.products{

    background:#f7f7f7;

}

.products-grid{

    display:grid;

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

    gap:35px;

}

.product-card{

    background:var(--white);

    border-radius:var(--radius);

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.product-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:transform .6s ease;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-content{

    padding:25px;

}

.product-content h3{

    font-size:1.4rem;

    color:var(--title);

    margin-bottom:12px;

}

.product-content p{

    color:var(--text);

    margin-bottom:25px;

    min-height:70px;

}

.product-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:15px;

}

.price{

    font-size:1.7rem;

    font-weight:700;

    color:var(--primary);

}

.btn-buy{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    background:var(--primary);

    color:#fff;

    padding:12px 22px;

    border-radius:40px;

    font-weight:600;

    transition:var(--transition);

}

.btn-buy:hover{

    background:var(--primary-dark);

}

.products-action{

    text-align:center;

    margin-top:60px;

}


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

.extra-product{

    display:none;

}

/* ==========================================================
   CHAMADA PARA AÇÃO (CTA)
========================================================== */

.cta{

    background:var(--primary);

    color:var(--white);

    text-align:center;

}

.cta-content{

    max-width:750px;

    margin:0 auto;

}

.cta-content h2{

    font-size:2.5rem;

    margin-bottom:20px;

}

.cta-content p{

    font-size:1.15rem;

    margin-bottom:35px;

    opacity:.95;

}

.cta .btn-primary{

    background:var(--white);

    color:var(--primary);

}

.cta .btn-primary:hover{

    background:#f4f4f4;

    color:var(--primary-dark);

}


/* ==========================================================
   RODAPÉ
========================================================== */

.footer{

    background:#2C1810;

    color:#fff;

    padding:70px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

    margin-bottom:50px;

}

.footer h3,
.footer h4{

    margin-bottom:20px;

}

.footer p{

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

    line-height:1.8;

}

.footer-links ul{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.footer-links a{

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

    transition:var(--transition);

}

.footer-links a:hover{

    color:var(--primary-light);

    padding-left:6px;

}

.footer-contact p{

    margin-bottom:10px;

}

.footer-bottom{

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

    margin-top:20px;

    padding-top:25px;

    text-align:center;

    font-size:.95rem;

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

}


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

@media(max-width:992px){

    .hero-content h1{

        font-size:3rem;

    }

    .about-grid{

        grid-template-columns:1fr;

        gap:50px;

    }

    .products-grid{

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

    }

    .footer-grid{

        grid-template-columns:1fr;

        text-align:center;

    }

}

@media(max-width:768px){

    section{

        padding:70px 0;

    }

    .hero{

        min-height:75vh;

    }

    .hero-content{

        text-align:center;

    }

    .hero-content h1{

        font-size:2.4rem;

    }

    .hero-content p{

        font-size:1.1rem;

    }

    .section-header h2{

        font-size:2rem;

    }

    .products-grid{

        grid-template-columns:1fr;

    }

    .product-footer{

        flex-direction:column;

        align-items:flex-start;

    }

    .btn-buy{

        width:100%;

    }

    .cta-content h2{

        font-size:2rem;

    }

}

@media(max-width:480px){

    .hero-content h1{

        font-size:2rem;

    }

    .section-header h2{

        font-size:1.8rem;

    }

    .about-content h2{

        font-size:1.8rem;

    }

    .cta-content h2{

        font-size:1.7rem;

    }

}