* {
            font-family: 'Lato', sans-serif;
        h1, h2, h3, h4, h5, h6, .fw-bold, .fw-semibold, .btn, .badge { font-family: 'Montserrat', sans-serif; }
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: linear-gradient(135deg, rgba(14,165,233,0.6) 0%, rgba(2,132,199,0.65) 50%, rgba(14,165,233,0.6) 100%);
            min-height: 100vh;
        }

        .hero-section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
            position: relative;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
            pointer-events: none;
        }

        .content-wrapper {
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 1200px;
        }

        .logo-text {
            font-size: 2.8rem;
            font-weight: 700;
            letter-spacing: -1px;
            color: white;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
            margin-bottom: 5px;
            margin-top: 20px;
        }

        .company-logo {
            width: 120px;
            height: auto;
            filter: drop-shadow(0 4px 15px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }

        .company-logo:hover {
            transform: scale(1.05);
        }

        .subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-top: 10px;
        }

        .cards-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }

        .card-wrapper {
            width: 100%;
            max-width: 350px;
        }

        .card-option {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 24px;
            padding: 40px 30px;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: block;
            height: 100%;
            position: relative;
            overflow: hidden;
            border: none;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .card-option::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--card-color), var(--card-color-light));
        }

        .card-option:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
            text-decoration: none;
        }

        .icon-wrapper {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.4s ease;
        }

        .card-option:hover .icon-wrapper {
            transform: scale(1.1) rotate(5deg);
        }

        .card-intranet {
            --card-color: #0ea5e9;
            --card-color-light: #0284c7;
        }
        .card-intranet .icon-wrapper {
            background: linear-gradient(135deg, #0ea5e9, #0284c7);
        }

        .card-soporte {
            --card-color: #0891b2;
            --card-color-light: #22d3ee;
        }
        .card-soporte .icon-wrapper {
            background: linear-gradient(135deg, #0891b2, #22d3ee);
        }

        .card-denuncias {
            --card-color: #dc2626;
            --card-color-light: #f87171;
        }
        .card-denuncias .icon-wrapper {
            background: linear-gradient(135deg, #dc2626, #f87171);
        }

        .card-title {
            text-align: center;
            color: #1a1a1a;
            font-weight: 700;
            font-size: 1.75rem;
            margin-bottom: 15px;
        }

        .card-text {
            text-align: center;
            color: #6b7280;
            font-size: 1rem;
            margin-bottom: 20px;
        }

        .card-badge {
            display: inline-block;
            padding: 10px 25px;
            border-radius: 50px;
            color: white;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .card-intranet .card-badge {
            background: linear-gradient(135deg, #0ea5e9, #0284c7);
        }

        .card-soporte .card-badge {
            background: linear-gradient(135deg, #0891b2, #22d3ee);
        }

        .card-denuncias .card-badge {
            background: linear-gradient(135deg, #dc2626, #f87171);
        }

        .footer-info {
            margin-top: 50px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.875rem;
        }

        .floating {
            animation: floating 3s ease-in-out infinite;
        }

        @keyframes floating {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @media (max-width: 768px) {
            .logo-text {
                font-size: 3.5rem;
            }
            .cards-container {
                gap: 20px;
            }
        }
