/* =================================
   SERVICES SECTION STYLES
   ================================= */

/* Service Card Base */
.service-card {
    position: relative;
    background: var(--bg-card);
    border-radius: 1.5rem;
    padding: 2.5rem;
    
    /* Estado Base: Limpio y Sutil */
    border: 2px solid var(--border); 
    background: linear-gradient(145deg, var(--bg-card), rgba(255, 255, 255, 0.02));
    box-shadow: none;
    
    /* Transiciones fluidas */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;  
    z-index: 1;
}

/* EFECTO HOVER */
.service-card:hover {
    /* Elevación */
    transform: translateY(-10px);
    
    /* Borde Encendido (2px) */
    border: 3px solid var(--accent);
    
    /* Sombreado (Glow) Intenso */
    box-shadow: var(--shadow-glow), var(--shadow-glow-pink);
}

/* Iconos de Servicios */
.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.service-icon i, 
.service-icon svg {
    font-size: 1.75rem;
    color: var(--text-secondary);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.4);
}

.service-card:hover .service-icon i,
.service-card:hover .service-icon svg {
    color: white;
}

/* Tipografía */
.service-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Listas de Características */
.service-features {
    margin-top: auto; /* Empuja al fondo */
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.service-features li::before {
    content: '•';
    color: var(--accent);
    font-size: 1.5rem;
    line-height: 0;
}

/* Badge Destacado */
.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-badge.popular {
    background: linear-gradient(135deg, #ff00ff, #ff0080);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 0, 255, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 0, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 0, 255, 0.6);
    }
}
