:root {
    --primary: #005f6a;       /* Tu verde Misti */
    --primary-light: #a7dbda; /* Tu color de degradado */
    --primary-hover: #007a88;
    --bg-light: #f4f9f9;      /* Un fondo casi blanco con un toque de tu verde */
    --text-dark: #002f35;
    --text-gray: #4a6366;
    --card-bg: rgba(255, 255, 255, 0.9);
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    transition: all 0.3s ease;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #005f6a;
    background-attachment: fixed;
    color: var(--text-dark);
    overflow-x: hidden;
    min-height: 100vh; 
}

/* El efecto de grano ahora es más sutil sobre fondo claro */
.noise {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.03;
    pointer-events: none;
    z-index: 10;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Una luz suave en el centro para dar claridad */

.container {
    width: 90%;
    max-width: 440px;
    margin: 0 auto;
    padding: 60px 0;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 40px;
}

.main-logo {
    max-width: 150px; 
    height: auto;
    /* Sombra más suave para fondo claro */
    filter: drop-shadow(0 4px 10px rgba(0, 95, 106, 0.15)); 
}

.headline {
    font-family: 'Baloo 2', cursive; 
    font-size: 1.8rem; 
    font-weight: 800;
    margin: 15px 0; 
    line-height: 1.1;
    color: var(--bg-light); /* El titular ahora es tu verde oscuro */
}

.sub-headline {
    font-size: 1.1rem;
    color: var(--bg-light);
    line-height: 1.6;
}

/* Tarjeta (Glassmorphism sobre fondo claro) */
.waitlist-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 35px 25px;
    border-radius: 32px;
    border: 1px solid rgba(0, 95, 106, 0.1);
    box-shadow: 0 20px 40px rgba(0, 95, 106, 0.08);
    margin-top: 20px;
}
.back-link {
    display: inline-block;
    color: #ffffff !important; /* Forzamos el blanco */
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 0.95rem;
    padding: 5px 10px;
    background: rgba(0, 95, 106, 0.4); /* Un fondo sutil para que se lea siempre */
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.back-link:hover {
    background: rgba(0, 95, 106, 0.6);
    transform: translateX(-5px);
}
form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

input {
    background: #ffffff;
    border: 1px solid rgba(0, 95, 106, 0.15);
    padding: 18px;
    border-radius: 18px;
    color: var(--text-dark);
    font-size: 1rem;
    outline: none;
}

input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(167, 219, 218, 0.3);
}

button {
    /* Degradado oficial Misti */
    background: linear-gradient(135deg, var(--primary) 0%, #008291 100%);
    color: white;
    padding: 20px;
    border: none;
    border-radius: 18px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(0, 95, 106, 0.2);
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 95, 106, 0.3);
}

/* Checkbox */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 5px;
}

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.checkbox-container label {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.4;
}

.checkbox-container a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

/* Pasos */
.steps {
    margin: 60px 0;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    background: rgba(255, 255, 255, 0.4);
    padding: 15px;
    border-radius: 20px;
}

.step-num {
    background: var(--primary-light);
    color: var(--primary);
    width: 42px; height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h3 {
    margin: 0 0 4px 0;
    font-family: 'Baloo 2', cursive;
    font-size: 1.3rem;
    color: var(--primary);
}

.step-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    text-align: center;
    border-top: 1px solid rgba(0, 95, 106, 0.1);
    padding-top: 40px;
}

.status {
    font-size: 0.85rem;
    color: var(--bg-light);
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.social-links a {
    color: var(--bg-light);
    font-size: 1.8rem;
    margin-bottom: 40px;
    margin: 0 15px;
    opacity: 0.8;
}

.legal-footer a {
    color: var(--text-dark); /* O usa #88a0a3 para que sea discreto */
    text-decoration: none;   /* Quita el subrayado */
    font-weight: 500;
    transition: 0.3s;
}

.legal-footer a:hover {
    color: var(--text-dark);   /* Se ilumina en tu verde Misti al pasar el ratón */
    text-decoration: none;   /* Mantenlo sin subrayar si prefieres limpieza visual */
}