@font-face {
    font-family: 'LibreFranklin';
    src: url('../fonts/LibreFranklin-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    /*Colores principales*/
    --pantone-320c: #0099A8;
    --cyan-light: #32C1D4;
    --teal-dark: #0B545B;

    /* Colores de Acento */
    --yellow: #F3D70F;
    --orande-red: #E9462F;
    --terracota: #BE8169;

    /* Colores complementarios */
    --olive-drab: #74692A;
    --magenta: #B41E6F;
    --dark-slate: #384150;

    /* Neutros */
    --negro-pure: #231F20;
    --blanco-pure: #FFFFFF;
    --gris-60: #808284;

    /* Fuente */
    --fuente-principal: 'LibreFranklin', sans-serif;
    --bs-body-font-family: var(--fuente-principal);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

nav,
footer {
    background-color: var(--pantone-320c);
}

body {
    color: var(--negro-pure);
}

#navbarNav .nav-link {
    font-weight: bold;
    font-size: 1.1rem;

    color: var(--blanco-pure);

    &:hover {
        transition: all 0.5s ease;
        background-color: var(--dark-slate);
        border-radius: 10px;
    }
}

.logo {
    height: 50px;
    width: auto;
}

.hero-card {
    height: 500px;
    background-color: var(--teal-dark);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(11, 84, 91, 0.85) 0%, rgba(11, 84, 91, 0.7) 100%);
    z-index: 2;
}

.title-color {
    color: var(--teal-dark);
}

.btn-portal {
    background-color: var(--pantone-320c);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    width: 100%;

    &:hover {
        background-color: var(--teal-dark);
        color: white;
    }
}

.custom-card {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    border-bottom: 4px solid transparent !important;

    &:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
        border-bottom: 4px solid var(--pantone-320c) !important;
    }
}

.nav-link {
    font-weight: 500;
    color: var(--dark-slate);

    &:hover {
        color: var(--pantone-320c);
    }
}

.footer {
    color: var(--blanco-pure);



    .footer-info {
        color: var(--blanco-pure);

        svg {
            color: white;
        }
    }
}

.footer-links {
    list-style: none;

    li {
        margin-bottom: 10px;

        a {
            color: var(--blanco-pure) !important;
            text-decoration: none;
            transition: color 0.3s ease;

            &:hover {
                color: var(--negro-pure) !important;
            }
        }
    }
}