/* VERTICAL */
/* Contenedor principal */
.social-bar {
    position: fixed;
    top: 42%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1px;
    z-index: 999999;
}

/* Botones base */
.social {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
    /* background: white; */
    background: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 18px;
    border-radius: 25px 0 0 25px;
    padding: 4px 10px;
    width: 175px;
    transform: translateX(130px);
    /* Oculto: solo icono visible */
    transition: transform 0.4s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Imágenes */
.social img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    object-fit: contain;
}

/* Efecto hover: deslizar */
.social:hover {
    transform: translateX(0);
}

/* Texto */
.social span {
    color: #333;
    font-weight: 600;
}

/* Bordes de color (personaliza a gusto) */
.facebook {
    /*  border-left: 4px solid #1877f2; */
}

.instagram {
    /* border-left: 4px solid #e4405f; */
}

.tiktok {
    /* border-left: 4px solid #000000; */
}

/* HORIZONTAL */
/* Sección Redes Sociales */
.redes-sociales {
    text-align: center;
    background-color: #f3f7ff;
    padding: 40px 0;
    font-family: 'Poppins', sans-serif;
}

.redes-sociales .iconosd {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Botón de red social */
.redes-sociales .iconosd .iconod {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* SVG dentro del botón */
.redes-sociales .iconosd .iconod img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
    filter: none !important;
    /* asegura que no desaparezca */
}

/* Hover general del botón */
.redes-sociales .iconosd .iconod:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2) !important;
    background-color: rgba(255, 255, 255, 1) !important;
}

/* Hover del SVG dentro del botón */
.redes-sociales .iconosd .iconod:hover img {
    transform: scale(1.15) !important;
    filter: none !important;
}

/* 📲 Celulares */
@media (max-width: 767px) {
    .social-bar {
        display: none;
    }
}