*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    background:#fff;
    color:#222;
}

/* NAVBAR */

.custom-navbar{
    background:#111;
    padding:7px 0;
}

.navbar-brand img{
    width:80px;
    height:auto;
}

.nav-link{
    color:#fff !important;
    margin-left:20px;
    font-weight:500;
}

.nav-link:hover{
    color:#f4b400 !important;
}

/* HERO */

.hero{
    padding:130px 0 100px;
    background:linear-gradient(to right,#fff,#f5f5f5);
    min-height:100vh;
    display:flex;
    align-items:center;
}

.hero-badge{
    background:#f4b400;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    display:inline-block;
}

.hero h1{
    font-size:65px;
    font-weight:800;
    margin:25px 0;
    line-height:1.2;
}

.hero h1 span{
    color:#f4b400;
}

.hero p{
    color:#555;
    line-height:1.9;
}

.hero-buttons{
    display:flex;
    gap:15px;
    margin-top:35px;
    flex-wrap:wrap;
}

.btn-yellow{
    background:#f4b400;
    color:#000;
    padding:16px 30px;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
}

.btn-dark-custom{
    background:#111;
    color:#fff;
    padding:16px 30px;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
}

/* GALLERY */

.gallery-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    grid-template-rows:repeat(2,250px);
    gap:18px;
}

.gallery-item{
    overflow:hidden;
    border-radius:25px;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.large{
    grid-row:span 2;
}

.instagram-box{
    background:#111;
    color:#fff;
    padding:25px;
    border-radius:20px;
    margin-top:20px;
}

.instagram-box a{
    color:#f4b400;
    text-decoration:none;
}

/* SERVICES */

.services{
    padding:100px 0;
}

.section-title h2{
    font-size:50px;
    font-weight:800;
}

.services-grid{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
}

.service-card{
    background:#fff;
    padding:35px 20px;
    border-radius:24px;
    text-align:center;
    box-shadow:0 5px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card i{
    font-size:40px;
    color:#f4b400;
    margin-bottom:15px;
}

.service-card span{
    font-weight:600;
}

/* BRANDS */

.brands{
    margin-top:80px;
    overflow:hidden;
}

.brands-track{
    display:flex;
    gap:60px;
    width:max-content;
    animation:scroll 25s linear infinite;
}

.brands-track img{
    height:70px;
    object-fit:contain;
}

@keyframes scroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

/* CONTACT */

.contact{
    padding:100px 0;
    background:#111;
    color:#fff;
}

.map{
    width:100%;
    height:450px;
    border:none;
    border-radius:24px;
}

.contact h2{
    font-size:52px;
    font-weight:800;
    margin-bottom:20px;
}

.contact p{
    color:#ccc;
    line-height:1.9;
}

.contact-item{
    display:flex;
    gap:15px;
    margin-top:20px;
    align-items:center;
}

.contact-item i{
    color:#f4b400;
}

.socials{
    display:flex;
    gap:20px;
    margin-top:35px;
}

.socials a{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#f4b400;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:24px;
}

/* FOOTER */

footer{
    background:#000;
    color:#fff;
    padding:25px 0;
}

/* WHATSAPP */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:70px;
    height:70px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
    text-decoration:none;
    z-index:999;
}

/* RESPONSIVE */

@media(max-width:992px){

    .hero h1{
        font-size:46px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .large{
        grid-row:auto;
    }

}

@media(max-width:576px){

    .hero{
        padding-top:150px;
    }

    .hero h1{
        font-size:36px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-yellow,
    .btn-dark-custom{
        width:100%;
        text-align:center;
    }

}