/* ============================================
   SERVICIOS PREMIUM - ESTILO LIMPIO
   ============================================ */

.servicio-card {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.servicio-card {
    background: linear-gradient(145deg, #1a1a26 0%, #15151f 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

/* Service image */
.servicio-card .card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 600 / 360;
    object-fit: contain;
    display: block;
    background: #080814; /* Matches SVG bg */
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.servicio-card:hover {
    transform: translateY(-10px);
    border-color: rgba(74, 144, 226, 0.5);
    box-shadow: 0 25px 50px -20px rgba(74, 144, 226, 0.3);
}

/* Top gradient bar */
.servicio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #4A90E2, #8B5CF6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 10;
}

.servicio-card:hover::before {
    transform: scaleX(1);
}

/* Glow effect */
.servicio-card .card-glow {
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(
        circle at 50% 0%,
        rgba(74, 144, 226, 0.15) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.servicio-card:hover .card-glow {
    opacity: 1;
}

/* Card content */
.servicio-card .card-content {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Card icon */
.servicio-card .card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00d4ff 0%, #4A90E2 50%, #8B5CF6 100%);
    border-radius: 20px;
    font-size: 1.8rem;
    color: #fff;
    margin-top: 0;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    z-index: 2;
    position: relative;
}

.servicio-card:hover .card-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.6);
}

/* Card title */
.servicio-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.3;
}

/* Card description */
.servicio-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Card bullets */
.servicio-card .card-bullets {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: left;
    width: 100%;
}

.servicio-card .card-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    line-height: 1.5;
}

.servicio-card .card-bullets li::before {
    content: '✓';
    color: #00d4ff;
    font-weight: 900;
    flex-shrink: 0;
}

/* Card note */
.servicio-card .card-note {
    font-size: 0.85rem;
    color: #00d4ff;
    font-weight: 500;
    margin-top: auto;
    padding: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 212, 255, 0.08);
    border-radius: 8px;
    text-align: center;
    width: 100%;
}

/* Card footer */
.servicio-card .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
}

.servicio-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #00d4ff 0%, #4A90E2 100%);
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.servicio-card .card-link:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.4);
    color: #fff;
}

.servicio-card .card-link i {
    transition: transform 0.3s ease;
}

.servicio-card .card-link:hover i {
    transform: translateX(4px);
}

/* Price */
.servicio-card .price {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .servicios-premium .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .servicios-premium .servicios-grid {
        grid-template-columns: 1fr;
    }
    
    .servicio-card .card-content {
        padding: 20px;
    }
    
    .servicio-card h3 {
        font-size: 1.2rem;
    }
    
    .servicio-card .card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .servicio-card .card-image {
        height: 150px;
    }
}

