body { 

font-family: 'Libre Franklin', sans-serif; 

}

.navbar-nav > .nav-item > .nav-link {
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: .82rem;
}

.navbar-nav > .nav-item {
    margin: 0 .75rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.show {
    background-color: #00d084;
    color: #ffffff !important;
    border-radius: .5rem;
}


/* Items del dropdown */
.dropdown-menu .dropdown-item {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 500;
    font-size: .9rem;
    letter-spacing: .03em;
    text-transform: none;
    color: #333;
}

/* Sub-submenus aún más sutiles */
.dropdown-subsubmenu .dropdown-item {
    font-size: .85rem;
    letter-spacing: .025em;
    opacity: .9;
}

/* Hover en dropdown items */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background-color: #00d084;
    color: #ffffff !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 12px 24px rgba(0,0,0,.08);
    border-radius: .75rem;
    padding: .5rem 0;
}

.dropdown-item:hover {
    background-color: rgba(0, 208, 132, 0.08);
    color: #00d084;
}

.dropdown-submenu,
.dropdown-subsubmenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu,
.dropdown-subsubmenu > .dropdown-menu {
    left: 100%;
    top: 0;
    margin-left: .1rem;
}

@media (max-width: 991.98px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar-nav > .nav-item {
        margin: .25rem 0;
    }

    .dropdown-submenu > .dropdown-menu,
    .dropdown-subsubmenu > .dropdown-menu {
        position: static !important;
        box-shadow: none;
    }

    .dropdown-submenu > a {
        padding-left: 2rem;
    }

    .dropdown-subsubmenu > a {
        padding-left: 3rem;
    }
}
.hero {
    background-size: cover;
    background-position: center;
    min-height: 420px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,.65),
        rgba(0,0,0,.35)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.hero h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: #00d084;
    margin: 1rem auto 0;
    border-radius: 3px;
}

.hero .opacity-75 {
    font-size: 1.05rem;
    letter-spacing: .05em;
}
@media (max-width: 768px) {
    .hero {
        min-height: 280px;
    }

    .hero h1 {
        font-size: 1.6rem;
        letter-spacing: .08em;
    }

    .hero .opacity-75 {
        font-size: .95rem;
    }
}
.hero-content {
    animation: fadeUp .6s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
