/* --------------------------
   Sección servicos
---------------------------*/

/* Estilos generales para las tarjetas de servicio */
.service-card {
    display: block;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Contenedor del icono/video */
.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon video {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

/* Contenido de texto */
.service-content {
    text-align: center;
}

.service-content h3 {
    font-weight: 600;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.service-link {
    display: inline-block;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 767px) {
    .service-card {
        padding: 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
}