.boton-especialidad {
    width: auto;           /* Se ajusta al ancho de la imagen */
    height: auto;          /* Se ajusta a la altura de la imagen */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: none !important; /* QUITAMOS CUALQUIER COLOR DE FONDO */
    border: none !important;
    padding: 0;
    overflow: visible;     /* IMPORTANTE: Para que no se corte nada */
}

.boton-especialidad img {
    width: auto;           /* Mantiene proporción original */
    height: auto;          /* Mantiene proporción original */
    max-width: 100%;       /* No se sale de la columna */
    display: block;
    object-fit: contain;   /* Asegura que se vea TODO el contenido */
}

.boton-especialidad:hover img {
    transform: scale(1.03);
    transition: transform 0.3s ease;
}
/* === MENU DESPLEGABLE === */
.menu-servicios {
    display: none;
    background-color: #f8f9fa;
    border-radius: 0 0 8px 8px;
    margin-top: -5px;
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.servicio-item {
    padding: 10px 15px;
    margin: 8px 0;
    background-color: white;
    border-radius: 6px;
    cursor: pointer;
    border-left: 4px solid #5888AF;
    transition: background-color 0.2s;
}

.servicio-item:hover {
    background-color: #e9ecef;
}

/* === CAJA DE INFORMACIÓN DE ABAJO === */
.info-contenedor {
    margin-top: 40px;
}

#info-mostrar {
    display: none;
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    width: 100% !important;
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

#info-mostrar table {
    width: 100%;
}

#info-mostrar th {
    color: #666;
    width: 25%;
    text-align: left;
    vertical-align: top;
}

.linea-separadora {
    border: none;
    height: 1px;
    background-color: #ccc;
    width: 100%;
    margin: 10px 0;
}

/* Responsivo */
@media (max-width: 768px) {
    .boton-especialidad {
        height: 120px;
    }
    #info-mostrar th {
        width: 40%;
    }
}