:root{
    --primary:#0A2540;
    --secondary:#2563EB;
    --gold:#D4AF37;
    --white:#ffffff;
    --dark:#1F2937;
}

/* GLOBAL */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family:'Segoe UI',sans-serif;
    line-height:1.7;
    overflow-x:hidden;
}
/* TOP BAR */
.top-bar{
    background:var(--primary);
    color:#fff;
    font-size:14px;
    padding:10px 0;
}

.top-bar a{
    color:#fff;
    text-decoration:none;
}

.top-bar i{
    color:var(--gold);
    margin-right:8px;
}

.social-icons a{
    margin-left:15px;
    color:#fff;
    transition:.3s;
}

.social-icons a:hover{
    color:var(--gold);
}

/* NAVBAR */

.navbar{
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    z-index:1030;
}

.navbar-brand img{
    height:75px;
    width:auto;
}

.nav-link{
    font-weight:600;
    margin:0 10px;
    transition:.3s;
}

.nav-link:hover,
.nav-link.active{
    color:var(--secondary)!important;
}

.consult-btn{
    background:var(--gold);
    color:#fff;
    padding:12px 25px;
    border-radius:5px;
    font-weight:600;
    text-decoration:none;
}

.consult-btn:hover{
    background:#c59f25;
    color:#fff;
}

/* HERO SECTION */

.hero-section{
    min-height:calc(100vh - 110px);

    background:
    linear-gradient(
        rgba(4,34,84,.80),
        rgba(4,34,84,.80)
    ),
    url('../images/hero.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;
}


.hero-title{
    font-size:72px;
    font-weight:800;
    line-height:1.1;
}

.hero-title span{
    color:var(--gold);
}

.hero-line{
    width:80px;
    height:4px;
    background:var(--gold);
    margin:25px 0;
}

.hero-text{
    font-size:22px;
    margin-bottom:35px;
}

.welcome-badge{
    display:inline-block;
    background:var(--gold);
    color:#000;
    padding:12px 25px;
    border-radius:40px;
    margin-bottom:25px;
    font-weight:600;
}

/* BUTTONS */

.btn-gold{
    background:var(--gold);
    color:#000;
    padding:15px 30px;
    border:none;
    border-radius:5px;
    font-weight:600;
    text-decoration:none;
}

.btn-gold:hover{
    background:#c59f25;
    color:#000;
}

.btn-outline-light{
    padding:15px 30px;
}

/* STATS */

.stats-section{
    margin-top:-60px;
    position:relative;
    z-index:10;
}

.stat-box{
    background:#fff;
    padding:25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 0 20px rgba(0,0,0,.1);
    transition:.3s; 
    height:100%;
}

.stat-box:hover{
    transform:translateY(-5px);
}

.stat-box i{
    color:var(--primary);
    font-size:35px;
    margin-bottom:15px;
}

.stat-box h3{
    font-weight:700;
    color:var(--primary);
}

/* SERVICES */

.services{
    padding:100px 0;
}

.service-card{
    height:100%;
    min-height:300px;

    background:#fff;
    padding:35px;
    border-radius:12px;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card i{
    font-size:45px;
    color:var(--primary);
    margin-bottom:20px;
}

.service-card h4{
    margin-bottom:15px;
    color:var(--primary);
}

/* CTA */

.cta-section{
    background:var(--primary);
    color:#fff;
    padding:80px 0;
}

/* FOOTER */

footer{
    background:var(--primary);
    color:#fff;
    padding:60px 0 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.footer-container h4{
    margin-bottom:20px;
}

.footer-container a{
    color:#fff;
    text-decoration:none;
}

.footer-container a:hover{
    color:var(--gold);
}

/* WHATSAPP */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    text-align:center;
    line-height:60px;
    font-size:30px;
    z-index:9999;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
}

/* MOBILE */

@media(max-width:991px){

    body{
        padding-top:170px;
    }

    .hero-title{
        font-size:42px;
    }

    .hero-text{
        font-size:18px;
    }

    .footer-container{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .hero-title{
        font-size:34px;
    }

    .stats-section{
        margin-top:20px;
    }

}

@media(max-width:991px){

    .top-bar{
        text-align:center;
        font-size:12px;
    }

    .top-bar span{
        display:block;
        margin-bottom:5px;
    }

    .navbar-brand img{
        height:60px;
    }

    .hero-title{
        font-size:42px;
    }

    .hero-text{
        font-size:18px;
    }

    .consult-btn{
        display:block;
        text-align:center;
    }

}
.counter{
    font-size:40px;
    font-weight:800;
    color:var(--primary);
    margin-bottom:10px;
}

.stat-box{
    background:#fff;
    padding:25px;
    border-radius:15px;
    text-align:center;
    height:100%;
    box-shadow:0 0 20px rgba(0,0,0,.1);
    transition:.3s;
}

.stat-box:hover{
    transform:translateY(-8px);
}

.stat-box i{
    color:var(--gold);
    font-size:40px;
    margin-bottom:15px;
}