:root{

    --primary:#003b8e;
    --secondary:#00b4b4;
    --dark:#0b132b;
    --light:#f8fafc;
    --white:#ffffff;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:var(--light);
    overflow-x:hidden;

}

/* =========================
   NAVBAR
========================= */

.navbar{

    background:rgba(0,59,142,.96);

    backdrop-filter:blur(10px);

    padding:6px 0;

    transition:.3s;

    z-index:999;

}

.logo-navbar img{

    height:100px;
    width:auto;

    transition:.3s;

}

.navbar-scroll .logo-navbar img{

    height:70px;

}

.nav-link{

    color:#fff !important;

    margin-left:20px;

    font-weight:600;

    transition:.3s;

}

.nav-link:hover{

    color:var(--secondary) !important;

}

/* =========================
   BUTTON NAV
========================= */

.btn-whatsapp-nav{

    background:linear-gradient(
    45deg,
    #00b4b4,
    #25D366
    );

    color:#fff;

    padding:12px 28px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.btn-whatsapp-nav:hover{

    transform:translateY(-3px);

    color:#fff;

}

/* =========================
   HERO
========================= */

.hero{

    position:relative;

    min-height:100vh;

    padding-top:120px;

    background:url('assets/img/hero.jpg');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;

}

.overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
    rgba(0,59,142,.88),
    rgba(0,180,180,.55)
    );

}

.hero .container{

    position:relative;
    z-index:2;

}

.hero-badge{

    background:rgba(255,255,255,.15);

    color:#fff;

    padding:12px 20px;

    border-radius:50px;

    backdrop-filter:blur(10px);

}

.hero-title{

    font-size:4.2rem;

    color:#fff;

    font-weight:800;

    line-height:1.1;

    max-width:850px;

}

.hero-text{

    color:#f1f1f1;

    font-size:1.15rem;

    max-width:650px;

    line-height:1.9;

}

/* =========================
   BUTTONS
========================= */

.btn-main{

    background:var(--secondary);

    border:none;

    color:#fff;

    padding:16px 34px;

    border-radius:50px;

    font-weight:700;

}

.btn-main:hover{

    background:#009999;

    color:#fff;

}

.btn-whatsapp{

    background:#25D366;

    border:none;

    color:#fff;

    padding:16px 34px;

    border-radius:50px;

    font-weight:700;

}

.btn-whatsapp:hover{

    background:#1ebe5d;

    color:#fff;

}

/* =========================
   SECTION
========================= */

.section{

    padding:100px 0;

}

.section-badge{

    background:rgba(0,180,180,.12);

    color:var(--secondary);

    padding:10px 20px;

    border-radius:50px;

    font-weight:600;

}

.section-title{

    font-size:2.8rem;

    font-weight:700;

    color:var(--primary);

}

.section-text{

    font-size:1.1rem;

    color:#555;

    line-height:1.9;

}

/* =========================
   SERVICES
========================= */

.service-card{

    background:#fff;

    border-radius:25px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    height:100%;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.service-card i{

    font-size:3rem;

    color:var(--secondary);

    margin-bottom:20px;

}

.service-card h4{

    font-weight:700;

    color:var(--primary);

    margin-bottom:15px;

}

.service-card p{

    color:#666;

    line-height:1.8;

}

/* =========================
   BENEFITS
========================= */

.benefits{

    background:linear-gradient(
    90deg,
    var(--primary),
    var(--secondary)
    );

}

.benefit-card{

    text-align:center;

    color:#fff;

}

.benefit-card i{

    font-size:3rem;

    margin-bottom:20px;

}

/* =========================
   COUNTER
========================= */

.counter{

    color:var(--secondary);

    font-size:2.5rem;

    font-weight:700;

}

/* =========================
   FOOTER
========================= */

footer{

    background:var(--primary);

    color:#fff;

    padding:40px 0;

}

/* =========================
   LOADER
========================= */

.loader{

    position:fixed;

    inset:0;

    background:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:99999;

    transition:.5s;

}

.loader-hidden{

    opacity:0;
    visibility:hidden;

}

.loader-spinner{

    width:70px;
    height:70px;

    border:6px solid #eee;

    border-top:6px solid #00b4b4;

    border-radius:50%;

    animation:spin 1s linear infinite;

}

@keyframes spin{

    100%{

        transform:rotate(360deg);

    }

}

/* =========================
   WHATSAPP FLOAT
========================= */

.whatsapp-float{

    position:fixed;

    width:65px;
    height:65px;

    right:25px;
    bottom:25px;

    background:#25D366;

    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    z-index:999;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

}

.whatsapp-float:hover{

    color:#fff;

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .hero{

        text-align:center;

    }

    .hero-title{

        font-size:2.8rem;

    }

    .logo-navbar img{

        height:60px;

    }

}

@media(max-width:576px){

    .hero-title{

        font-size:2rem;

    }

    .btn-main,
    .btn-whatsapp{

        width:100%;

        margin-bottom:15px;

    }

}

/* =========================
   LOGIN FOOTER
========================= */

.footer-login{

    color:rgba(255,255,255,.7);

    text-decoration:none;

    font-size:14px;

    transition:.3s;

}

.footer-login:hover{

    color:#00d4d4;

}

/* =========================
   SCROLL TOP
========================= */

.scroll-top{

    position:fixed;

    width:55px;
    height:55px;

    right:25px;
    bottom:105px;

    background:linear-gradient(
    45deg,
    #00b4b4,
    #003b8e
    );

    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;

    cursor:pointer;

    z-index:999;

    opacity:0;
    visibility:hidden;

    transition:.3s;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

}

.scroll-top.active{

    opacity:1;
    visibility:visible;

}

.scroll-top:hover{

    transform:translateY(-5px);

}