/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-secondary-2: #679436;
    --white: #ffffff;
    --white-80: rgba(255, 255, 255, 0.8);
    --white-60: rgba(255, 255, 255, 0.6);
    --white-20: rgba(255, 255, 255, 0.2);
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--green-secondary-2);
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--white);
}

/* Contenedor principal */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    padding: 2rem;
}

/* Elementos decorativos de fondo */
.bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: var(--white-20);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: -10%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

/* Formas flotantes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: var(--white-20);
    animation: rotate 20s linear infinite;
}

.shape-1 {
    width: 40px;
    height: 40px;
    top: 20%;
    right: 20%;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.shape-2 {
    width: 30px;
    height: 30px;
    bottom: 30%;
    right: 10%;
    border-radius: 50%;
    animation-delay: 10s;
}

.shape-3 {
    width: 50px;
    height: 25px;
    top: 70%;
    left: 10%;
    border-radius: 25px;
    animation-delay: 5s;
}

/* Contenido principal */
.content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 100%;
}

/* Logo */
.logo-container {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.logo-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    width: 300px;
    margin: 0 auto;
    filter: drop-shadow(0 4px 20px var(--shadow));
    animation: pulse 3s ease-in-out infinite;
}

/* Ensure external logo content is centered and properly sized */
.logo-placeholder > * {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Texto principal */
.coming-soon-text {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px var(--shadow);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 300;
    color: var(--white-80);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Barra de progreso */
.progress-container {
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.progress-bar {
    width: 100%;
    max-width: 300px;
    height: 6px;
    background: var(--white-20);
    border-radius: 10px;
    margin: 0 auto 1rem;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--white), var(--white-80));
    border-radius: 10px;
    width: 0%;
    animation: progressLoad 3s ease-out 1.2s forwards;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

.progress-text {
    font-size: 0.875rem;
    color: var(--white-60);
    font-weight: 400;
}

/* Indicador de scroll */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 1s ease-out 1.5s both;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--white-60);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white-60);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes progressLoad {
    to {
        width: 75%;
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes scroll {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(8px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .logo-placeholder {
        width: 80px;
        min-height: 80px;
    }
    
    .circle-1 {
        width: 120px;
        height: 120px;
    }
    
    .circle-2 {
        width: 100px;
        height: 100px;
    }
    
    .circle-3 {
        width: 80px;
        height: 80px;
    }
    
    .shape-1, .shape-2, .shape-3 {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .subtitle {
        margin-bottom: 2rem;
    }
    
    .progress-container {
        margin-top: 1.5rem;
    }
}

/* Preferencias de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}