:root {
    --primary: #1A2B4C;
    --accent: #00D4FF;
    --secondary: #2D5A27;
    --white: #F4F7F6;
    --text-main: #1A2B4C;
    --text-muted: #536271;
    --bg-gradient: linear-gradient(135deg, #F4F7F6 0%, #E2E8E7 100%);
    --card-bg: rgba(255, 255, 255, 0.05);
    --shadow: 0 20px 40px rgba(26, 43, 76, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background: var(--primary);
    background-image:
        radial-gradient(at 0% 0%, rgba(0, 212, 255, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(45, 90, 39, 0.2) 0px, transparent 50%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
}

.container {
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    z-index: 1;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    animation: fadeIn 1s ease-out;
}

.logo-container {
    margin: 0 auto 3rem;
    animation: float 6s ease-in-out infinite;
    /* Efecto de fondo sutil para el logo */
    background: rgba(255, 255, 255, 0.9);
    display: block;
    width: fit-content;
    padding: 1.5rem 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.logo {
    max-width: 180px;
    height: auto;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #ffffff, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.25rem;
    color: rgba(244, 247, 246, 0.8);
    max-width: 500px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(45, 90, 39, 0.2);
    border: 1px solid var(--secondary);
    color: #4ade80;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pulse {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    animation: pulse 2s infinite;
}

.progress-container {
    width: 100%;
    max-width: 400px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 10%;
    background: linear-gradient(to right, var(--secondary), var(--accent));
    border-radius: 100px;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    animation: shine 2s infinite;
}

.subscribe-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

button {
    background: var(--accent);
    color: var(--primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.4);
    filter: brightness(1.1);
}

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

.social-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.6;
    transition: var(--transition);
}

.social-link:hover {
    opacity: 1;
    color: var(--accent);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Mobile responsive */
@media (max-width: 640px) {
    h1 {
        font-size: 2.25rem;
    }

    .card {
        padding: 3rem 1.5rem;
    }

    .subscribe-form {
        flex-direction: column;
    }

    button {
        width: 100%;
    }
}