﻿body {
    font-family: 'Montserrat', sans-serif;
}

.bg-navy-dark {
    background-color: #05162e;
}

.bg-navy-card {
    background-color: #0b2240;
}

.text-canacintra-red {
    color: #d61118;
}

.bg-canacintra-red {
    background-color: #d61118;
}

/* Línea animada para el menú */
.nav-link {
    position: relative;
}

    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 3px;
        bottom: -6px;
        left: 0;
        background-color: #d61118;
        transition: width 0.3s ease;
    }

    .nav-link.active::after, .nav-link:hover::after {
        width: 100%;
    }
