/* Base (estilos iniciales, mobile first) */
header {
    background-color: #fcfcfc;
    font-family: "Montserrat", sans-serif;
}

nav {
    max-width: 100%;
    margin: auto;
}

/* Subrayado animado en enlaces del menú */
.nav-link {
    position: relative;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #0b3c71;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #0b3c71;
}

.nav-link:hover::after {
    width: 100%;
}

/*.nav-link.active {*/
/*    background-color: #4e2178;*/
/*    color: white !important;*/
/*    border-radius: 20px;*/
/*}*/

.btn-login {
    color: #4e2178;
    border: 2px solid #4e2178;
    font-weight: bold;
}

.btn-login:hover {
    background-color: #4e2178;
    color: white;
}
.container-button-header{
    margin: 25px auto 25px auto
}
.button-dibujo-header {
    background-color: #4e2178;
    color: #ffed00;
    font-size: 14px;
    padding: 10px;
    border: 3px solid #000;
    border-radius: 10px;
    text-align: center;
    box-shadow: -2px 2px 0px #000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    max-width: 200px;
    margin: 0 auto;
    text-decoration: none;
}

.button-dibujo-header:hover {
    transform: translate(-2px, 2px);
    box-shadow: -4px 4px 0px #000;
}

.button-dibujo-header:active {
    transform: translate(0, 0);
    box-shadow: -1px 1px 0px #000;
}
.bi-whatsapp {
    background-color: #0c047a; /* Color verde de WhatsApp */
    color: #fff; /* Color del texto */
    border: none; /* Sin borde */
    padding: 0.5rem 1rem; /* Espaciado interno */
    font-size: 1rem; /* Tamaño del texto */
    border-radius: 5px; /* Bordes redondeados */
    display: inline-flex; /* Flexbox para icono y texto */
    align-items: center; /* Centra verticalmente */
    gap: 0.5rem; /* Espaciado entre el icono y el texto */
    text-decoration: none; /* Elimina el subrayado */
    transition: background-color 0.3s ease; /* Transición suave */
}

.bi-whatsapp:hover {
    background-color:rgb(12, 4, 49); /* Cambia el color al pasar el cursor */
}

.bi-whatsapp i {
    font-size: 1.2rem; /* Tamaño del icono */
}
/* Estilos de la barra de búsqueda */
.search-icon {
    border: none;
    background: transparent;
    cursor: pointer;
    color: #0b3c71; /* Color predeterminado de la lupa */
}
.search-icon:hover {
    color: #1B076E; /* Color al pasar el cursor */
}


.container-page {
    width: 100%;
    margin: auto;
    padding: 20px;
    font-family: "Montserrat", sans-serif;
}

@media (min-width:1000px) {
    .container-page {
        width: 1000px;
    }
}
@media (min-width:1200px) {
    .container-page {
        width: 1200px;
    }
}
@media (min-width:1400px) {
    .container-page {
        width: 1400px;
    }
}


/*Footer javier*/
.footer {
    background-color: #f8f9fa;
    padding: 40px 0;
    position: relative;
    width: 100%;
    margin: auto;
}

@media (min-width:1000px) {
    .footer {
        width: 1000px;
    }
}
@media (min-width:1200px) {
    .footer {
        width: 1200px;
    }
}
@media (min-width:1400px) {
    .footer {
        width: 1400px;
    }
}


.footer-container {
    width: 80%;
    margin: 0 auto;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    text-align: left;
    padding-bottom: 20px;
}

.column h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.column ul {
    list-style: none;
    padding: 0;
}

.column ul li {
    margin-bottom: 8px;
}

.column ul li a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
}

.column ul li a:hover {
    color: #000;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #1b263b;
}

.corner-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px; /* Ajusta el tamaño según tu imagen */
    max-width: 100%;
}
