@charset "utf-8";

.image-container {
    position: relative; /* Necesario para posicionar el overlay de iconos */
    overflow: hidden; /* Oculta los iconos cuando están fuera del contenedor */


}


.image-container img {
    object-fit: cover; /* Asegura que la imagen cubra el div sin distorsionarse */
    display: block; /* Elimina espacio extra debajo de la imagen */
    transition: transform 0.3s ease, filter 0.8s ease; /* Opcional: pequeño efecto de zoom en la imagen */

  

}

.icons-overlay {
    position: absolute;
    bottom: 50px; /* Comienza oculto debajo del contenedor (ajusta si tus iconos son más grandes) */
    left: 0;
    right: 0;
    display: flex;
    justify-content: center; /* Centra los iconos horizontalmente */
    align-items: flex-end; /* Alinea los iconos a la parte inferior de este overlay */
    padding-bottom: 2px; /* Margen de 2px desde el borde inferior del overlay */
    background-color: rgba(0, 0, 0, 0.3); /* Fondo semitransparente opcional para el overlay */
    opacity: 0; /* Comienza transparente */
    transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
    pointer-events: none; /* Para que no interfiera con el hover del contenedor principal al inicio */
}

.image-container:hover .icons-overlay {
    bottom: 0; /* Desliza hacia arriba hasta la parte inferior del image-container */
    opacity: 1; /* Hace visible el overlay */
    pointer-events: auto; /* Permite interactuar con los iconos */
}

.image-container:hover img {
    transform: scale(1.05); /* Opcional: efecto de zoom en la imagen al pasar el mouse */
     filter: brightness(1.2);
}

.icon-link {
    color: #e7f3f6;
    font-size: 18px; /* Tamaño del icono */
    margin: 0 10px; /* Espacio entre iconos */
    padding: 8px; /* Espacio alrededor del icono para facilitar el clic */
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.icon-link:hover {
    color: #ffffff; /* Color al pasar el mouse sobre el icono */
    transform: scale(1.3); /* Agranda un poco el icono al pasar el mouse */
}

/* Para asegurar que el área de los iconos no se oculte por completo si no hay fondo */
.icons-overlay::before {
    content: '';
    display: block;
    height: 1px; /* Un pequeño truco para asegurar que el padding-bottom tenga efecto visualmente */
}
.member .member-title:after {
    content: '';
    clear: both;
    display: table
}

.member.text-center .member-title small {
    display: block;
}

.member:hover .member-top figure:after {
    visibility: visible;
    opacity: 0.35
}

.member:hover .member-top .social-icons {
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.swiper-container .member {
    margin-bottom: 0
}

.swiper-container .member p:last-child {
    margin-bottom: 0
}


.social-icons {
    margin-bottom: 1rem
}

.social-icons:after {
    content: '';
    display: table;
    clear: both
}

.social-icons .social-icon {
    display: inline-block;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 4px;
    color: #323232;
    background-color: #fff;
    transition: all .65s cubic-bezier(0.92, 0.17, 0.29, 0.93) 0s;
    margin: 0 0 0.25rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1)
}

.social-icons .social-icon+.social-icon {
    margin-left: 0.25rem
}

.social-icons .social-icon.circle {
    border-radius: 50%
}

.social-icons .social-icon:hover,
.social-icons .social-icon:focus {
    color: #fff;
    background-color: blue;
}

.bg-white .social-icons .social-icon {
    background-color: #d7d4d4;
}

.bg-white .social-icons .social-icon:hover,
.bg-white .social-icons .social-icon:focus {
    color: #fff;
}

.social-icons.circle .social-icon {
    border-radius: 50%
}

.datos{
    padding-top: 15px;
    text-align: left;
}

.nombre {
    line-height: 1;
    font-weight: 400;
    padding: 0px;
}
.detalle {
    padding-top: 5px;
    font-size: 14px;
    line-height: 16px;
}
.lugar {
    line-height: 16px;
    padding-bottom: 35px;
}