        :root {
            --color-magenta: #D9048E;
            --color-navy: #253259;
            --color-blue: #049DD9;
            --color-gold: #C4A962;
            --color-green: #10B981;
            --gradient-primary: linear-gradient(135deg, #D9048E 0%, #A00366 100%);
            --gradient-secondary: linear-gradient(135deg, #253259 0%, #1a2540 100%);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 10px 40px rgba(217, 4, 142, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf3 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }

        /* Decorative Background Elements */
        body::before {
            content: '';
            position: fixed;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(217, 4, 142, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
            pointer-events: none;
        }

        body::after {
            content: '';
            position: fixed;
            bottom: -40%;
            left: -15%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(37, 50, 89, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
            pointer-events: none;
        }

        /* Header */
        .header {
            position: relative;
            background: var(--gradient-secondary);
            padding: 20px 40px;
            box-shadow: var(--shadow-md);
            z-index: 10;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logos-section {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .logo-img {
            height: 60px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
            transition: transform 0.3s ease;
        }

        .logo-img:hover {
            transform: scale(1.05);
        }

        .logo-divider {
            width: 2px;
            height: 50px;
            background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
        }

        .header-badge {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 10px 24px;
            border-radius: 30px;
            color: white;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* Main Content */
        .main-container {
            position: relative;
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 20px;
            z-index: 1;
        }

        .content-wrapper {
            max-width: 1100px;
            width: 100%;
        }

        /* Hero Section */
        .hero-section {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInDown 0.8s ease;
        }

        .hero-title {
            font-size: 2.75rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .hero-subtitle {
            font-size: 1.15rem;
            color: #64748b;
            font-weight: 400;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            margin-bottom: 50px;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .service-card {
            position: relative;
            background: white;
            border-radius: 20px;
            padding: 40px 32px;
            text-decoration: none;
            color: inherit;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            box-shadow: var(--shadow-sm);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--card-gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--card-color);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        /* Card Asistencia */
        .card-asistencia {
            --card-color: var(--color-blue);
            --card-gradient: linear-gradient(135deg, #049DD9 0%, #0374A3 100%);
        }

        /* Card Visitas */
        .card-visitas {
            --card-color: var(--color-magenta);
            --card-gradient: var(--gradient-primary);
        }

        /* Card Ayuda */
        .card-ayuda {
            --card-color: var(--color-green);
            --card-gradient: linear-gradient(135deg, #10B981 0%, #059669 100%);
        }

        .card-icon {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            background: var(--card-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            transition: transform 0.3s ease;
        }

        .service-card:hover .card-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .card-icon i {
            font-size: 1.8rem;
            color: white;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--color-navy);
            margin-bottom: 12px;
        }

        .card-description {
            font-size: 0.95rem;
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 28px;
        }

        .card-action {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--card-color);
            transition: all 0.3s ease;
        }

        .card-action i {
            transition: transform 0.3s ease;
        }

        .service-card:hover .card-action i {
            transform: translateX(5px);
        }

        /* Official Link */
        .official-link-wrapper {
            text-align: center;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .official-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 50px;
            color: #64748b;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
        }

        .official-link:hover {
            border-color: var(--color-navy);
            color: var(--color-navy);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .official-link i {
            font-size: 0.85rem;
        }

        /* Footer */
        .footer {
            position: relative;
            background: var(--gradient-secondary);
            color: white;
            text-align: center;
            padding: 24px 20px;
            font-size: 0.85rem;
            z-index: 10;
        }

        .footer p {
            opacity: 0.9;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header {
                padding: 20px;
            }

            .header-content {
                flex-direction: column;
                gap: 20px;
            }

            .logos-section {
                gap: 20px;
            }

            .logo-img {
                height: 50px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .service-card {
                padding: 32px 24px;
            }

            .main-container {
                padding: 40px 20px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.75rDem;
            }

            .card-title {
                font-size: 1.25rem;
            }
        }