/* Estilos generales del header */
.header-effect-shrink {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Contenedor del header */
.header-container {
    max-width: 1200px;
    margin: auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.header-logo img {
    max-width: 250px;
    height: auto;
}

.header-social-icons i {
    font-size: 1.29rem;  /* Escala mejor en distintos dispositivos */
}


/* Navegación principal */
.header-nav-main {
    display: flex;
    align-items: center;
}

/* Menú de navegación */
.nav.nav-pills {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

Estilos de los enlaces
.nav.nav-pills li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.nav.nav-pills li a:hover {
    color: #007bff; /* Azul */
}

/*********** FOOTER *************/
footer {
    background-color: #0e0d0d !important;  /* Fondo negro */

    padding: 20px 0;                    /* Espaciado para mejor apariencia */
}

.footer_profile ul li{
display: inline-block;
}

.footer_profile ul li a {
	background: #ffffff;
	width: 40px;
	height: 40px;
	display: block;
	text-align: center;
	margin-right: 5px;
	border-radius: 50%;
	line-height: 40px;
	box-sizing: border-box;
	text-decoration: none;
	-webkit-transition: .3s;
	transition: .3s;
	color: #000000;
}

.footer_copyright {
    margin-bottom: 15px;
    /* text-transform: uppercase; */
    font-size: 16px;
    font-family: 'Verdana', sans-serif;
    font-weight: 600;
    color: #ffffff;
}

/* Cambios de color en hover para cada red social */
.footer_profile ul li a:hover .fa-facebook { color: #1877F2; }  /* Azul Facebook */
.footer_profile ul li a:hover .fa-instagram { color: #E4405F; } /* Rosa Instagram */
/* .footer_profile ul li a:hover .fa-x-twitter { color: #000000; } Negro Twitter/X */
.footer_profile ul li a:hover .fa-discord { color: #7289DA; }   /* Azul Discord */
.footer_profile ul li a:hover .fa-linkedin { color: #0077B5; }  /* Azul LinkedIn */
.footer_profile ul li a:hover .fa-telegram { color: #0088cc; }  /* Azul Telegram */
.footer_profile ul li a:hover .fa-meetup { color: #ED1C40; }    /* Rojo Meetup */


/* Para pantallas medianas y pequeñas (≤ 768px) */
@media (max-width: 768px) {
    /* Footer */
    .footer-logo {
        max-width: 100px;
    }
    #footer {
        text-align: center;
    }

    /* Header */
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    .header-nav-main {
        width: 100%;
        text-align: center;
    }
    .nav-pills {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .nav-item {
        width: 100%;
    }
    .nav.nav-pills li {
        padding: 5px 0;
    }
    .header-logo img {
        max-width: 200px;
    }
}

/* Para pantallas pequeñas (≤ 480px) */
@media (max-width: 480px) {
    .footer-logo {
        max-width: 80px;
    }
}