/* Contenedor del botón y los iconos */
#social-container {
    top: 20px;
    right: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
	margin-top: -9px;
}

/* Flecha desplegable, oculta por defecto en pantallas grandes */
#toggle-button {
    display: none;
    font-size: 10px;
    cursor: pointer;
    padding: 5px;
    background-color: #007f33;
    color: white;
    border-radius: 30%;
    display: flex !important;
    gap: 5px !important;
    align-items: center !important;
    position: absolute !important;
    left: 50% !important;
    top: 20%;
    transform: translateX(-50%) !important;
}

/* Estilos principales de los iconos */
#social-icons {
    display: flex !important;
    gap: 5px !important;
    top: -5px;
    transition: opacity 0.3s ease, transform 0.3s ease;
	align-items: center !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

/* Estilos de los botones */
#social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 5px;
    border: 3px solid #007f37;
    background-color: #007f37;
    padding: 5px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Ajuste del tamaño de los iconos */
#social-icons img {
    width: 30px;
    height: 30px;
}

/* Efecto hover */
#social-icons a:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Ocultar los iconos cuando el menú está cerrado */
.hidden_rrss {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

/* Media query: activamos el modo desplegable en < 992px */
@media (max-width: 992px) {
    #toggle-button {
        display: block; /* Muestra la flecha */
    }

    #social-icons {
        flex-direction: column;
        background: white;
        padding: 10px;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
		top: 80% !important;
    }
}
