*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family: "Poppins", sans-serif;
    background-color: #ffffff;
    color: #333;
}

/* ===========================
   NAVBAR
=========================== */

.navbar{
    background: #fff;
    border-bottom: 1px solid #ececec;
    min-height: 85px;
    padding: 12px 0;
    box-shadow: 0 5px 18px rgba(0,0,0,.06);
}

.navbar-brand img{
    transition: transform .3s ease;
}

.navbar-brand:hover img{
    transform: scale(1.04);
}

.navbar-nav{
    gap: 12px;
}

.navbar-nav .nav-link{
    position: relative;
    font-size: 1rem;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0 10px;
    padding: 8px 4px;
    letter-spacing: .3px;
    transition: color .3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color: #8B5A2B;
}

.navbar-nav .nav-link::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #8B5A2B;
    transition: width .3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{
    width: 100%;
}

/* ===========================
   BARRA SUPERIOR
=========================== */

.top-bar{
    background: #5b3a1d;
    color: white;
    font-size: .9rem;
    padding: 8px 0;
}

.top-bar .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact{
    display: flex;
    align-items: center;
}

.top-contact i{
    margin-right: 6px;
}

.top-social{
    display: flex;
    gap: 18px;
    font-size: 1rem;
}

.top-social i{
    cursor: pointer;
    transition: .3s;
}

.top-social i:hover{
    color: #d6b07b;
}
header{
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ==========================
          FOOTER
========================== */

.footer{
    background:#2b2b2b;
    color:#fff;
    padding:70px 0 30px;
}

.footer-logo{
    width:130px;
}

.footer-text{
    color:#cfcfcf;
    line-height:1.8;
}

.footer h5{
    margin-bottom:20px;
    font-weight:600;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
    color:#cfcfcf;
}

.footer-links a{
    text-decoration:none;
    color:#cfcfcf;
    transition:.3s;
}

.footer-links a:hover{
    color:#d6b07b;
}

.footer-links i{
    color:#8B5A2B;
    margin-right:8px;
}

.footer-social{
    display:flex;
    gap:15px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#3a3a3a;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-decoration:none;
    font-size:1.2rem;
    transition:.3s;
}

.footer-social a:hover{
    background:#8B5A2B;
    transform:translateY(-4px);
}

.footer hr{
    margin:45px 0 25px;
    border-color:#555;
}

.footer-copy{
    text-align:center;
    color:#bdbdbd;
    font-size:.9rem;
    line-height:1.8;
}
/* ==========================
        HERO MARCAS
========================== */

.hero-marcas{

    background:linear-gradient(135deg,#8B5A2B,#6d431f);

    color:white;

    padding:90px 20px;

}

.hero-marcas h1{

    font-size:3rem;

    font-weight:700;

    margin-bottom:20px;

}

.hero-marcas p{

    max-width:750px;

    margin:auto;

    font-size:1.15rem;

    line-height:1.8;

    opacity:.95;

}

/* ==========================
        MARCAS
========================== */

.marcas{

    background:#f8f9fa;

    padding:80px 0;

}

.marca-card{

    background:white;

    border-radius:20px;

    padding:35px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    height:100%;

    text-decoration:none;

    color:#333;

    border:1px solid #ececec;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:all .35s ease;

}

.marca-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.14);

    border-color:#8B5A2B;

}

.marca-card img{

    width:170px;

    height:90px;

    object-fit:contain;

    margin-bottom:25px;

    transition:.35s;

}

.marca-card:hover img{

    transform:scale(1.08);

}

.marca-card h3{

    font-size:1.35rem;

    font-weight:700;

    color:#2b2b2b;

    margin-bottom:15px;

}

.marca-card p{

    color:#666;

    line-height:1.7;

    flex:1;

    margin-bottom:25px;

}

.marca-card span{

    color:#8B5A2B;

    font-weight:700;

    transition:.3s;

}

.marca-card:hover span{

    letter-spacing:.5px;

}

.marca-card i{

    margin-left:6px;

}

/* ==========================
        CTA
========================== */

.cta-marcas{

    background:white;

    padding:90px 20px;

}

.cta-marcas h2{

    font-size:2.2rem;

    font-weight:700;

    margin-bottom:20px;

    color:#2b2b2b;

}

.cta-marcas p{

    max-width:650px;

    margin:0 auto 35px;

    color:#666;

    line-height:1.8;

}

/* ==========================
        RESPONSIVE
========================== */

@media(max-width:992px){

    .marca-card{

        padding:30px;

    }

}

@media(max-width:768px){

    .hero-marcas{

        padding:70px 20px;

    }

    .hero-marcas h1{

        font-size:2.2rem;

    }

    .marca-card img{

        width:140px;

    }

}