/* Reset y estilos básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Container principal */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 20px;
}

/* Contenido principal */
.content {
    text-align: center;
    color: white;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    animation: fadeInUp 1s ease-out;
}

/* Logo */
.logo-container {
    margin-bottom: 40px;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Título principal */
.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

/* Subtítulo */
.subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Icono de construcción */
.construction-icon {
    font-size: 4rem;
    margin: 30px 0;
    color: #ffa726;
    animation: bounce 2s infinite;
}

/* Mensaje */
.message {
    margin: 40px 0;
}

.message p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

/* Información de contacto */
.contact-info {
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info p {
    font-size: 1rem;
    opacity: 0.8;
}

.contact-info i {
    margin-right: 10px;
    color: #ffa726;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Efectos de fondo animados */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.gear {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    animation: rotate 20s linear infinite;
}

.gear1 {
    top: 10%;
    left: 10%;
    font-size: 3rem;
    animation-duration: 15s;
}

.gear2 {
    top: 70%;
    right: 15%;
    font-size: 2.5rem;
    animation-duration: 25s;
    animation-direction: reverse;
}

.gear3 {
    bottom: 20%;
    left: 20%;
    font-size: 2rem;
    animation-duration: 30s;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    from {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    to {
        text-shadow: 2px 2px 20px rgba(255, 255, 255, 0.3);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 40px 20px;
        margin: 20px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .construction-icon {
        font-size: 3rem;
    }
    
    .message p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 15px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .construction-icon {
        font-size: 2.5rem;
    }
}