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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0a0a0a;
    color: #c5c1b9;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Efecto de gradiente animado en el fondo */
body::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

/* Logo como imagen */
.logo-container {
    margin-bottom: 2rem;
}

.logo-image {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(197, 193, 185, 0.3));
    animation: logoFloat 3s ease-in-out infinite;
}

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

/* Logo como texto (alternativa si no hay imagen) */
.logo-text {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #c5c1b9 0%, #8b7f6e 50%, #c5c1b9 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.tagline {
    font-size: 1.25rem;
    color: #8b8580;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #a8a39a;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #6b6660;
    margin-bottom: 2rem;
    font-weight: 500;
}

.cta-container {
    display: flex;
    justify-content: center;
    margin: 0 auto 3rem;
}

.contact-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #c5c1b9 0%, #a8a39a 100%);
    border: none;
    border-radius: 8px;
    color: #0a0a0a;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(197, 193, 185, 0.2);
}

.contact-button:active {
    transform: translateY(0);
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 4rem;
}

.social-link {
    color: #8b8580;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    letter-spacing: 0.05em;
}

.social-link:hover {
    color: #c5c1b9;
}

/* Partículas flotantes */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(197, 193, 185, 0.3);
    border-radius: 50%;
    animation: float 15s infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 12s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; animation-duration: 18s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; animation-duration: 14s; }
.particle:nth-child(7) { left: 70%; animation-delay: 12s; }
.particle:nth-child(8) { left: 80%; animation-delay: 14s; animation-duration: 16s; }
.particle:nth-child(9) { left: 90%; animation-delay: 16s; }

/* Responsive */
@media (max-width: 768px) {
    .logo-text {
        font-size: 3rem;
    }

    .logo-image {
        max-width: 200px;
    }

    .tagline {
        font-size: 1rem;
    }

    .description {
        font-size: 1rem;
    }

    .social-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}
