
     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            background: linear-gradient(135deg, #F59F00 0%, #F57C00 25%, #FF5733 50%, #AB81CD 75%, #E2ADF2 100%);
            min-height: 100vh;
            position: relative;
        }

        /* Animaciones de fondo */
        .background-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 200%;
            height: 100px;
            background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.1) 100%);
            animation: wave 6s ease-in-out infinite;
            border-radius: 50px 50px 0 0;
        }

        .wave:nth-child(2) {
            bottom: 20px;
            animation: wave 8s ease-in-out infinite reverse;
            opacity: 0.7;
        }

        .wave:nth-child(3) {
            bottom: 40px;
            animation: wave 10s ease-in-out infinite;
            opacity: 0.5;
        }

        @keyframes wave {
            0%, 100% { transform: translateX(-50%) rotate(0deg); }
            50% { transform: translateX(-50%) rotate(2deg); }
        }

        /* Partículas flotantes */
        .particle {
            position: absolute;
            background: rgba(255,255,255,0.4);
            border-radius: 50%;
            pointer-events: none;
            animation: float 15s infinite linear;
        }

        @keyframes float {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
        }

        /* Contenido principal */
        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            text-align: center;
            padding: 20px;
            position: relative;
            z-index: 10;
        }

        .logo {
            width: 230px;
            height: 230px;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.3);
            animation: pulse 3s ease-in-out infinite;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
        }

        .logo i {
            font-size: 60px;
            color: white;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

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

        .main-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
            animation: slideInDown 1.5s ease-out;
        }

        .subtitle {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.95);
            margin-bottom: 40px;
            max-width: 600px;
            line-height: 1.6;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
            animation: slideInUp 1.5s ease-out 0.3s both;
        }

        .construction-message {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(15px);
            padding: 40px;
            border-radius: 20px;
            margin: 30px 0;
            border: 1px solid rgba(255,255,255,0.2);
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            animation: slideInUp 1.5s ease-out 0.6s both;
        }

        .construction-icon {
            font-size: 4rem;
            color: #FFD700;
            margin-bottom: 20px;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        .construction-title {
            font-size: 2.2rem;
            color: white;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .construction-text {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.9);
            line-height: 1.6;
            margin-bottom: 20px;
        }



        .contact-info {
            margin-top: 50px;
            animation: slideInUp 1.5s ease-out 1.5s both;
        }

        .contact-title {
            font-size: 1.5rem;
            color: white;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .contact-details {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255,255,255,0.9);
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            transform: scale(1.05);
            color: white;
        }

        .contact-item i {
            color: #FFD700;
        }

        .progress-bar {
            width: 100%;
            max-width: 400px;
            height: 8px;
            background: rgba(255,255,255,0.2);
            border-radius: 10px;
            overflow: hidden;
            margin: 30px auto;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #FFD700, #FFA500);
            border-radius: 10px;
            animation: progress 3s ease-out 2s both;
        }

        @keyframes progress {
            from { width: 0%; }
            to { width: 75%; }
        }

        .progress-text {
            color: rgba(255,255,255,0.9);
            margin-top: 10px;
            font-size: 0.9rem;
        }

        /* Animaciones de entrada */
        @keyframes slideInDown {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .main-title { font-size: 2.5rem; }
            .subtitle { font-size: 1.1rem; }
            .construction-message { padding: 25px; margin: 20px 10px; }
            .construction-title { font-size: 1.8rem; }
            .contact-details { flex-direction: column; align-items: center; }
        }
