/* Variables de color */
:root {
    --verde: #22C55E;
    --verde-oscuro: #166534;
    --blanco: #FFFFFF;
    --gris-claro: #F1F5F9;
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, var(--gris-claro) 0%, var(--blanco) 100%);
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--verde-oscuro);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    position: relative;
}

/* Header */
.header {
    text-align: center;
    padding: 0;
    position: absolute;
    top: 1.5rem;
    left: 0;
    right: 0;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}

.logo {
    width: 220px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(34, 197, 94, 0.2));
}

/* Main Content */
.main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex: 0 0 auto;
}

.coming-soon-section {
    text-align: center;
    max-width: 700px;
    padding: 2rem 2rem;
    background: var(--blanco);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.1);
}

.coming-soon-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--verde);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.slogan {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--verde-oscuro);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--verde) 0%, var(--verde-oscuro) 100%);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.description {
    font-size: 1.1rem;
    color: var(--verde-oscuro);
    opacity: 0.8;
    line-height: 1.6;
}

/* Footer */
.footer {
    text-align: center;
    padding: 1rem 0;
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    width: 100%;
}

.footer-text {
    font-size: 0.95rem;
    color: var(--verde-oscuro);
    opacity: 0.7;
    font-weight: 400;
    margin: 0;
    padding: 0 1rem;
}

.footer-text a {
    color: var(--verde);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-text a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 2.5rem;
    }

    .slogan {
        font-size: 1.5rem;
    }

    .description {
        font-size: 1rem;
    }

    .logo {
        width: 180px;
    }

    .coming-soon-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-title {
        font-size: 2rem;
    }

    .slogan {
        font-size: 1.25rem;
    }

    .container {
        padding: 1rem;
    }
}

/* Animación sutil */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coming-soon-section {
    animation: fadeIn 0.8s ease-out;
}

