/* ============================================
   NOTORIOS - LANDING PAGE
   Paleta: Beige cálido + Negro
   ============================================ */

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

:root {
    --beige: #f5f0e6;
    --beige-dark: #e8e0d0;
    --negro: #1a1a1a;
    --negro-suave: #333;
    --gris: #666;
}

html {
    font-size: 18px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: var(--beige);
    color: var(--negro);
    line-height: 1.9;
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 60px 0;
}

.hero {
    padding-top: 80px;
    padding-bottom: 60px;
    text-align: center;
}

.narrative,
.filter,
.monster,
.closing {
    text-align: center;
}

/* Separador visual entre secciones */
.section-divider {
    width: 40px;
    height: 1px;
    background-color: var(--negro);
    margin: 0 auto 60px auto;
    opacity: 0.2;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

p {
    margin-bottom: 1.4rem;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.headline {
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1.4;
    margin-bottom: 2rem;
}

strong {
    font-weight: 600;
    color: var(--negro);
}

.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gris);
    margin-bottom: 2rem;
}

/* ============================================
   SPACERS
   ============================================ */

.spacer {
    height: 1.5rem;
    margin-bottom: 0;
}

.spacer-lg {
    height: 3rem;
    margin-bottom: 0;
}

/* ============================================
   FORMS - KLAVIYO EMBED
   ============================================ */

.form-container {
    margin: 2.5rem auto;
    max-width: 380px;
}

/*
   Klaviyo inject el formulario dentro de este div.
   Estos estilos ayudan a que se vea consistente.
*/
.klaviyo-form-UgZDHe {
    width: 100%;
}

/* Override para inputs de Klaviyo si es necesario */
.form-container input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--negro);
    background: transparent;
    color: var(--negro);
    margin-bottom: 12px;
}

.form-container input[type="email"]::placeholder {
    color: var(--gris);
}

.form-container button {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.9rem;
    font-family: inherit;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    background: var(--negro);
    color: var(--beige);
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.form-container button:hover {
    opacity: 0.85;
}

.form-hint {
    font-size: 0.8rem;
    color: var(--gris);
    margin-top: 1rem;
    font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    padding: 60px 0 40px 0;
    text-align: center;
}

.brand {
    font-size: 0.8rem;
    color: var(--gris);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    html {
        font-size: 16px;
    }

    section {
        padding: 50px 0;
    }

    .hero {
        padding-top: 60px;
    }

    .container {
        padding: 0 20px;
    }

    p {
        font-size: 1rem;
    }

    .headline {
        font-size: 1.3rem;
    }

    .form-container {
        max-width: 100%;
    }
}
