/* ============================================
   HOME PAGE MODERNIZATION 2025
   Estudio Jurídico Giusta
   ============================================ */

/* Las variables se importan desde design-system-premium.css */

/* ============================================
   1. HERO SECTION MODERNA
   ============================================ */
.hero-modern {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #16345c 0%, #2d4a73 100%);
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('/static/images/banner principal2.png') center/cover no-repeat,
        linear-gradient(135deg, rgba(22, 52, 92, 0.95) 0%, rgba(45, 74, 115, 0.9) 100%);
    background-blend-mode: overlay;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(247, 184, 199, 0.2);
    border: 2px solid var(--gold-accent);
    border-radius: 50px;
    color: var(--gold-accent);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: var(--gold-accent);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 1.125rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.hero-trust-bar {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.938rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--gold-accent);
    font-size: 1.5rem;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold-accent);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 15px 40px rgba(247, 184, 199, 0.4);
}

.badge-number {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.875rem;
    text-align: center;
    line-height: 1.2;
    margin-top: 0.25rem;
}

/* ============================================
   2. ESTADÍSTICAS DESTACADAS
   ============================================ */
.stats-highlight {
    padding: 5rem 0;
    background: linear-gradient(135deg, #16345c 0%, #2d4a73 100%);
    position: relative;
}

.stats-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: var(--bg-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(247, 184, 199, 0.2);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: var(--gold-accent);
}

.stat-icon {
    font-size: 3.5rem;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================
   3. SECCIÓN DE INTRODUCCIÓN
   ============================================ */
.intro-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(22, 52, 92, 0.1);
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    color: var(--primary-blue);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-title .highlight {
    color: var(--gold-accent);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   4. SERVICIOS MODERNOS
   ============================================ */
.services-modern {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

/* Service Cards Premium */
.service-card-premium {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all var(--duration-500) var(--ease-premium);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(247, 184, 199, 0.05));
    border-radius: var(--radius-2xl);
    opacity: 0;
    transition: opacity var(--duration-500);
    z-index: 0;
}

.service-card-premium:hover {
    transform: translateY(-12px) rotateX(2deg);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-2xl), var(--shadow-gold);
}

.service-card-premium:hover::before {
    opacity: 1;
}

/* Featured Service */
.featured-service {
    border-color: var(--gold-primary);
    background: linear-gradient(135deg, var(--white) 0%, #FFFBF0 100%);
}

.featured-badge-premium {
    position: absolute;
    top: -14px;
    right: var(--space-6);
    background: var(--gold-primary);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    box-shadow: var(--shadow-gold);
    animation: pulse 2s ease infinite;
    display: flex;
    align-items: center;
    gap: var(--space-1-5);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Service Icon Premium */
.service-icon-premium {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, var(--navy-medium), var(--navy-light));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-4xl);
    color: var(--white);
    margin-bottom: var(--space-6);
    transition: all var(--duration-500) var(--ease-premium);
    position: relative;
    overflow: hidden;
}

.icon-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(247, 184, 199, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--duration-500);
}

/* Hover effect mejorado sin rotación agresiva */
.service-card-premium:hover .service-icon-premium {
    transform: scale(1.15);
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    box-shadow: 0 10px 30px rgba(247, 184, 199, 0.4);
}

/* Icon glow más sutil y sin rotación */
.service-card-premium:hover .icon-glow {
    opacity: 0.6;
}

.service-title {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 0.938rem;
}

.service-features i {
    color: var(--gold-accent);
    font-size: 1rem;
}

/* Service Link Premium */
.service-link-premium {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background: var(--navy-medium);
    color: var(--white);
    font-weight: var(--font-semibold);
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all var(--duration-300) var(--ease-premium);
    font-size: var(--text-base);
    position: relative;
    overflow: hidden;
}

.service-link-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    transform: translateX(-100%);
    transition: transform var(--duration-300) var(--ease-premium);
}

.service-link-premium span,
.service-link-premium i {
    position: relative;
    z-index: 1;
}

.service-link-premium:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-gold);
    color: var(--white);
}

.service-link-premium:hover::before {
    transform: translateX(0);
}

.service-link-premium:hover i {
    transform: translateX(4px);
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: var(--primary-blue);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(22, 52, 92, 0.3);
    color: white;
}

/* ============================================
   5. SOBRE MÍ MODERNA
   ============================================ */
.about-modern {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(22, 52, 92, 0.95);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.about-badge i {
    color: var(--gold-accent);
    font-size: 1.5rem;
}

.certifications {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.cert-item {
    background: var(--bg-secondary);
    padding: 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.cert-item:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateX(5px);
}

.cert-item:hover i {
    color: var(--gold-accent);
}

.cert-item i {
    font-size: 2rem;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.cert-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cert-item strong {
    font-size: 1rem;
    font-weight: 700;
}

.cert-item small {
    font-size: 0.813rem;
    opacity: 0.9;
}

.about-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text {
    margin-bottom: 2rem;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.063rem;
}

.about-text strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 10px;
    border-left: 3px solid var(--gold-accent);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateX(5px);
}

.value-item i {
    color: var(--gold-accent);
    font-size: 1.5rem;
}

.value-item span {
    font-weight: 600;
    font-size: 0.938rem;
}

.about-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.btn-secondary-large:hover {
    background: var(--bg-tertiary);
    transform: translateY(-3px);
}

/* ============================================
   6. POR QUÉ ELEGIRNOS
   ============================================ */
.why-choose {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--primary-blue);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(22, 52, 92, 0.1) 0%, rgba(247, 184, 199, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary-blue);
    color: white;
    transform: rotateY(360deg);
}

.feature-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* ============================================
   7. CTA FINAL
   ============================================ */
.cta-final {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(247, 184, 199, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-benefits {
    list-style: none;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 2rem auto;
    text-align: left;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.063rem;
    font-weight: 500;
}

.cta-benefits i {
    color: var(--gold-accent);
    font-size: 1.25rem;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-cta-whatsapp,
.btn-cta-form {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-cta-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.btn-cta-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-cta-form {
    background: white;
    color: var(--primary-blue);
}

.btn-cta-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,255,255,0.3);
}

.btn-cta-whatsapp i,
.btn-cta-form i {
    font-size: 2rem;
}

.btn-cta-whatsapp div,
.btn-cta-form div {
    text-align: left;
}

.btn-cta-whatsapp strong,
.btn-cta-form strong {
    font-size: 1.125rem;
    display: block;
    margin-bottom: 0.25rem;
}

.btn-cta-whatsapp small,
.btn-cta-form small {
    font-size: 0.875rem;
    opacity: 0.9;
    display: block;
}

/* ============================================
   8. RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        min-height: auto;
        padding: 4rem 0 3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .certifications {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .btn-cta-whatsapp,
    .btn-cta-form {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   9. ANIMACIONES
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-text {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-image {
    animation: scaleIn 0.8s ease forwards 0.3s;
    opacity: 0;
}

.stat-card {
    opacity: 0;
}

.stat-card.animated {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card {
    opacity: 0;
}

.service-card.animated {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SERVICE CARDS PREMIUM WITH PRICING
   ============================================ */

.service-features {
    list-style: none;
    padding: 0;
    margin: var(--space-4) 0;
}

.service-features li {
    position: relative;
    padding-left: var(--space-6);
    margin-bottom: var(--space-2);
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.5;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold-primary);
    font-weight: var(--font-bold);
    font-size: var(--text-sm);
}

.service-price {
    margin-top: var(--space-6);
    padding-top: var(--space-4);
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.price-label {
    display: block;
    font-size: var(--text-xs);
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    margin-bottom: var(--space-1);
}

.price-amount {
    display: block;
    font-size: var(--text-2xl);
    font-weight: var(--font-extrabold);
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: var(--space-1);
}

.price-period {
    display: block;
    font-size: var(--text-sm);
    color: var(--gray-500);
}

/* Enhanced service card hover with pricing */
.service-card-premium:hover .service-price {
    transform: translateY(-2px);
}

.service-card-premium:hover .price-amount {
    color: var(--gold-light);
}

/* ============================================
   ANIMACIÓN SUAVE CON STAGGER PARA SERVICIOS
   ============================================ */

/* Estado inicial de los service cards */
.service-card-premium {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animación cuando se revelan */
.service-card-premium.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Delays progresivos para el efecto stagger */
.service-card-premium:nth-child(1).revealed {
    transition-delay: 0.1s;
}

.service-card-premium:nth-child(2).revealed {
    transition-delay: 0.2s;
}

.service-card-premium:nth-child(3).revealed {
    transition-delay: 0.3s;
}

.service-card-premium:nth-child(4).revealed {
    transition-delay: 0.4s;
}

.service-card-premium:nth-child(5).revealed {
    transition-delay: 0.5s;
}

.service-card-premium:nth-child(6).revealed {
    transition-delay: 0.6s;
}

/* Hover effect mejorado */
.service-card-premium:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

