html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, sans-serif;
}

/* NAVBAR */

.navbar{
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.navbar-brand img{
    height:60px;
    width:auto;
}

.nav-link{
    font-weight:500;
}

.dropdown-menu{
    border:none;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    text-align:center;
    background:#f8f9fa;
}

.hero h1{
    font-size:4rem;
    font-weight:700;
}

.hero p{
    font-size:1.2rem;
    max-width:700px;
    margin:auto;
    margin-bottom:30px;
}

/* SECCIONES */

section{
    padding:40px 0;
    scroll-margin-top:90px;
}

section:nth-child(even){
    background:#f8f9fa;
}

section h2{
    margin-bottom:20px;
    font-weight:700;
}

/* FOOTER */

.footer{
    background:#0d6efd;
    color:white;
    text-align:center;
    padding:30px 0;
}

/* DROPDOWN HOVER */

@media (min-width:992px){

    .dropdown:hover .dropdown-menu{
        display:block;
        margin-top:0;
    }

}