/* Estilos Generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: white;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Centrar verticalmente */
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path fill="rgba(255,255,255,0.05)" d="M0 0h1v20H0zM10 0h1v20h-1zM20 0h1v20h-1zM0 0h20v1H0zM0 10h20v1H0zM0 20h20v1H0z"/></svg>');
}

/* Fondo Animado */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 25s ease-in-out infinite;
    will-change: transform;
}

.bg-shape-1 { width: 400px; height: 400px; background: linear-gradient(135deg, #8b5cf6, #ec4899); top: 5%; left: 10%; animation-delay: 0s; }
.bg-shape-2 { width: 300px; height: 300px; background: linear-gradient(135deg, #10b981, #3b82f6); top: 50%; right: 10%; animation-delay: -8s; }
.bg-shape-3 { width: 350px; height: 350px; background: linear-gradient(135deg, #f59e0b, #ef4444); bottom: 10%; left: 20%; animation-delay: -16s; }
.bg-shape-4 { width: 250px; height: 250px; background: linear-gradient(135deg, #ec4899, #8b5cf6); top: 20%; right: 40%; animation-delay: -4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
    25% { transform: translateY(-25px) translateX(15px) scale(1.1); }
    50% { transform: translateY(20px) translateX(-20px) scale(0.9); }
    75% { transform: translateY(-15px) translateX(25px) scale(1.05); }
}

/* Contenedor Principal */
.container {
    text-align: center;
    padding: 20px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contenido de Construcción */
.construction-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.icon-container {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.construction-icon {
    font-size: 3rem;
    color: #f59e0b; /* Naranja */
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

.highlight-orange {
    color: #f59e0b;
}

p {
    font-size: 1.2rem;
    color: #a0a0a0;
    line-height: 1.6;
    max-width: 600px;
}

/* Botón WhatsApp */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .bg-shape {
        filter: blur(60px);
        opacity: 0.1;
    }
}
