/* ===========================
        GLOBAL STYLES
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
}

/*=========================
        NAVBAR
==========================*/

.navbar{

    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:80px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 8%;

    background:#fff;

    box-shadow:0 3px 15px rgba(0,0,0,.08);

    z-index:1000;

}

.logo a{

    text-decoration:none;
    font-size:32px;
    font-weight:700;

}

.logo-red{

    color:#c1121f;

}

.logo-black{

    color:#222;

}

.nav-links{

    display:flex;
    list-style:none;
    gap:40px;

}

.nav-links a{

    text-decoration:none;
    color:#222;
    font-weight:500;
    transition:.3s;

}

.nav-links a:hover{

    color:#c1121f;

}

/* Hamburger */

.menu-toggle{

    display:none;

    font-size:32px;

    cursor:pointer;

}

/* ===========================
            HERO
=========================== */

.hero{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:80px 10% 0;

    background:#f8f8f8;

}

.hero-content{

    max-width:850px;

}

.hero h1{

    font-size:4rem;

    line-height:1.2;

    color:#c1121f;

}

.hero p{

    max-width:700px;

    margin:25px auto 40px;

    font-size:1.2rem;

    line-height:1.8;

    color:#555;

}

.btn{

    display:inline-block;

    padding:16px 40px;

    background:#c1121f;

    color:white;

    text-decoration:none;

    border-radius:50px;

    font-size:18px;

    transition:.3s;

}

.btn:hover{

    background:#8f0f18;

    transform:translateY(-3px);

}
.floating-whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    background:#25D366;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    box-shadow:0 8px 25px rgba(0,0,0,.25);

    z-index:9999;

    transition:.3s;

}

.floating-whatsapp:hover{

    transform:scale(1.1);

}

@media(max-width:768px){

.floating-whatsapp{

    width:58px;

    height:58px;

    right:18px;

    bottom:18px;

}

}
.nav-links a.active{

    color:#c1121f;

    font-weight:700;

    border-bottom:2px solid #c1121f;

}

/*==========================
          FOOTER
==========================*/

.footer{

    background:#1f1f1f;

    color:#fff;

    margin-top:80px;

}

.footer-container{

    width:90%;

    max-width:1200px;

    margin:auto;

    padding:60px 0;

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

}

.footer h2,
.footer h3{

    margin-bottom:20px;

    color:#fff;

}

.footer p{

    color:#ccc;

    line-height:1.8;

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer ul li{

    margin-bottom:12px;

}

.footer a{

    color:#ccc;

    text-decoration:none;

    transition:.3s;

}

.footer a:hover{

    color:#e63946;

}

.footer hr{

    border:none;

    border-top:1px solid rgba(255,255,255,.1);

}

.footer-bottom{

    text-align:center;

    padding:20px;

    color:#aaa;

}

@media(max-width:768px){

.footer-container{

    grid-template-columns:1fr;

    text-align:center;

}

}
.active-footer{

    color:#e63946 !important;

    font-weight:600;

}
/* ===========================
        RESPONSIVE
===================
======== */

@media (max-width:768px){

    .navbar{

        height:70px;

        padding:0 6%;

    }

    .nav-links{

        display:none;

    }

    .logo a{

        font-size:1.7rem;

    }

    .hero{

        padding:100px 7% 40px;

    }

    .hero h1{

        font-size:2.2rem;

    }

    .hero p{

        font-size:1rem;

    }
    /*=========================
        MOBILE
==========================*/

@media(max-width:768px){

    .navbar{

        padding:0 7%;

    }

    .menu-toggle{

        display:block;

    }

    .nav-links{

    display:flex;

    position:fixed;

    top:80px;
    left:-100%;

    width:100%;
    height:calc(100vh - 80px);

    background:#fff;

    flex-direction:column;

    justify-content:flex-start;

    align-items:center;

    gap:25px;

    padding-top:40px;

    transition:left .4s ease;

}

    .nav-links li{

        padding:18px;

        border-bottom:1px solid #eee;

    }

    .nav-links.active{

        left:0;

    }

    .hero{

        padding:100px 8% 40px;

    }

    .hero h1{

        font-size:2.5rem;

    }

    .hero p{

        font-size:1rem;

    }

}



}