/* =========================================
   ZAPE ZONE LANDING - ESTILOS FUSIONADOS & RESPONSIVE
   ========================================= */

:root {
    /* PALETA ÁCIDA */
    --acid-green: #ccff00;
    --hot-pink: #ff0055;
    --zape-purple: #9b59b6;
    --zape-yellow: #ffcf00;
    --black: #050505;
    --off-white: #f0f0f0;
    --pure-white: #ffffff;

    /* FUENTES */
    --font-display: 'Syne', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

/* RESET BÁSICO */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
    /* CRÍTICO: Evita que los stickers rompan el ancho */
    width: 100%;
}

body {
    background-color: var(--black);
    color: var(--pure-white);
    font-family: var(--font-mono);
}

/* =========================================
   1. NAVEGACIÓN FLOTANTE
   ========================================= */
.zape-nav-top {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    /* Más ancho en móvil */
    max-width: 1200px;
    background: rgba(0, 0, 0, 0.9);
    /* Más oscuro para legibilidad */
    backdrop-filter: blur(10px);
    border: 2px solid var(--off-white);
    border-radius: 50px;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.btn-zape-small {
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.75rem;
    /* Un poco más pequeño base */
    padding: 8px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    transition: transform 0.2s;
    display: inline-block;
    white-space: nowrap;
    /* Evita que el texto baje */
}

.btn-zape-small:hover {
    transform: scale(1.05);
}

.btn-zape-small.black {
    background: var(--pure-white);
    color: var(--black);
}

.btn-zape-small.purple {
    background: var(--zape-purple);
    color: var(--pure-white);
    margin-left: 5px;
}

.btn-zape-small.yellow {
    background: var(--zape-yellow);
    color: var(--black);
    margin-left: 5px;
}

.nav-label {
    font-size: 0.7rem;
    color: #aaa;
    margin-right: 10px;
}

/* =========================================
   2. HERO SECTION (EL CAOS)
   ========================================= */
.zape-hero {
    min-height: 100vh;
    /* Ocupa toda la pantalla */
    min-height: 100dvh;
    /* Soporte para móviles modernos */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, #222 0%, #000 100%);
    padding: 120px 20px 60px 20px;
    /* Padding top extra para el nav */
}

/* Ruido de fondo */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
}

/* Título Gigante */
.big-title {
    font-family: var(--font-display);
    /* Clamp ajustado para que no rompa en iPhone SE */
    font-size: clamp(3.5rem, 12vw, 10rem);
    line-height: 0.85;
    font-weight: 800;
    color: var(--pure-white);
    margin-bottom: 20px;
    text-shadow: 3px 3px 0px var(--zape-purple);
}

.big-title span {
    color: var(--acid-green);
    -webkit-text-stroke: 1px var(--black);
    /* Borde más fino en móvil */
}

.hero-tagline {
    font-family: var(--font-mono);
    font-size: clamp(0.9rem, 3vw, 1.5rem);
    letter-spacing: 1px;
    background: var(--hot-pink);
    color: var(--pure-white);
    display: inline-block;
    padding: 5px 10px;
    transform: rotate(-2deg);
    max-width: 90%;
    /* Evita desborde */
}

.hero-disclaimer {
    margin-top: 30px;
    font-size: 0.75rem;
    opacity: 0.6;
    font-family: var(--font-mono);
    padding: 0 20px;
}

/* Stickers Flotantes */
.stickers-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.sticker {
    position: absolute;
    width: clamp(80px, 15vw, 150px);
    /* Stickers responsivos */
    height: auto;
    transform: rotate(var(--r));
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(5px 5px 0px rgba(0, 0, 0, 0.5));
    opacity: 0.8;
    /* Un poco transparentes para no tapar texto */
}

.s-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.s-2 {
    bottom: 15%;
    right: 5%;
    animation-delay: 1s;
}

.s-3 {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(var(--r));
    }

    50% {
        transform: translateY(-20px) rotate(var(--r));
    }
}

/* =========================================
   3. BOTONES BRUTALES
   ========================================= */
.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    width: 100%;
}

.btn-brutal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    border: 3px solid var(--pure-white);
    background: var(--black);
    color: var(--pure-white);
    box-shadow: 5px 5px 0px var(--pure-white);
    transition: all 0.1s;
    text-align: center;
}

.btn-brutal:hover {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0px var(--pure-white);
}

.btn-brutal:active {
    transform: translate(5px, 5px);
    box-shadow: 0px 0px 0px;
}

/* Variantes */
.btn-brutal.pink-mode {
    background-color: var(--hot-pink);
    border-color: var(--pure-white);
    box-shadow: 5px 5px 0px var(--pure-white);
}

.btn-brutal.black-mode {
    background: var(--black);
    color: var(--pure-white);
    border-color: var(--zape-purple);
    box-shadow: 5px 5px 0px var(--zape-purple);
}

.btn-brutal.white-mode {
    background: var(--off-white);
    color: var(--black);
    border-color: var(--black);
    box-shadow: 5px 5px 0px var(--black);
}

.btn-mega {
    display: block;
    /* Full width en móvil */
    width: 100%;
    background: var(--acid-green);
    color: var(--black);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.3rem;
    padding: 18px;
    text-decoration: none;
    border: 3px solid var(--black);
    box-shadow: 6px 6px 0px var(--black);
    transition: all 0.2s;
    text-align: center;
}

.btn-mega:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px var(--black);
}

/* =========================================
   4. MARQUEE (CINTA)
   ========================================= */
.marquee-strip {
    background: var(--zape-yellow);
    color: var(--black);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 3px solid var(--black);
    border-bottom: 3px solid var(--black);
    transform: rotate(-1deg);
    position: relative;
    z-index: 10;
    width: 105%;
    /* Un poco más ancho para cubrir rotación */
    margin-left: -2.5%;
}

.marquee-content {
    display: inline-block;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1rem;
    animation: scroll 15s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

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

/* =========================================
   5. SPLIT ZONE (MARCA VS CREADOR)
   ========================================= */
.split-zone {
    display: flex;
    flex-direction: row;
    /* Default Desktop */
    min-height: 80vh;
}

.split-side {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-business {
    background-color: var(--off-white);
    color: var(--black);
}

.side-creator {
    background-color: var(--zape-purple);
    color: var(--pure-white);
}

.content-wrap {
    max-width: 500px;
    width: 100%;
}

.side-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 0.9;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.side-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.check-list {
    list-style: none;
    margin-bottom: 40px;
    font-family: var(--font-mono);
    font-weight: 700;
}

.check-list li {
    margin-bottom: 10px;
    font-size: 1rem;
}

/* =========================================
   6. MANIFIESTO (PROBLEMA)
   ========================================= */
.section-problem {
    background-color: var(--acid-green);
    padding: 80px 20px;
    color: var(--black);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.brutalist-card {
    background: var(--pure-white);
    border: 3px solid var(--black);
    box-shadow: 10px 10px 0px var(--black);
}

.card-header-mac {
    background: var(--black);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.title-bar {
    color: var(--acid-green);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    margin-left: auto;
    text-transform: uppercase;
}

.card-body-text {
    padding: 30px;
}

.card-body-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1;
}

.problem-list {
    list-style: none;
    margin: 20px 0;
    font-family: var(--font-mono);
}

.problem-list li {
    margin-bottom: 12px;
    font-size: 1rem;
}

.highlight-text {
    background: var(--black);
    color: var(--pure-white);
    display: inline;
    padding: 4px 8px;
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1.6;
    box-decoration-break: clone;
    /* Para que el fondo negro siga en multilínea */
    -webkit-box-decoration-break: clone;
}

/* =========================================
   7. FOUNDERS CLUB
   ========================================= */
.section-founders {
    background-color: var(--off-white);
    padding: 80px 20px;
    text-align: center;
    background-image: radial-gradient(#ccc 1px, transparent 1px);
    background-size: 20px 20px;
}

.founders-box {
    background: var(--pure-white);
    border: 3px solid var(--black);
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.1);
}

.icon-crown {
    font-size: 3.5rem;
    color: var(--zape-yellow);
    margin-bottom: 15px;
    filter: drop-shadow(3px 3px 0px var(--black));
}

.founders-box h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--black);
    line-height: 1;
}

.lead {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.cta-final small {
    display: block;
    margin-top: 15px;
    font-family: var(--font-mono);
    color: #777;
    font-size: 0.8rem;
}

/* =========================================
   8. FOOTER
   ========================================= */
.zape-footer {
    background: var(--black);
    color: var(--pure-white);
    padding: 40px 20px;
    text-align: center;
    border-top: 5px solid var(--hot-pink);
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-copy {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    opacity: 0.6;
    line-height: 1.6;
}

.footer-copy a {
    color: var(--pure-white);
    text-decoration: underline;
}

/* =========================================
   RESPONSIVE (MÓVIL)
   ========================================= */
/* =========================================
   MEDIA QUERIES (OPTIMIZACIÓN MÓVIL)
   ========================================= */

/* TABLETS Y MÓVILES (Menos de 992px) */
@media (max-width: 992px) {

    /* 1. Navegación Superior */
    .zape-nav-top {
        width: 95%;
        padding: 8px 10px;
        justify-content: center;
        /* Centrar contenido si falta espacio */
    }

    .nav-left {
        display: none;
        /* Ocultamos el botón "Atrás" en móvil para priorizar Login/Registro */
    }

    .nav-right {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .nav-label {
        display: none;
    }

    /* Ahorrar espacio */

    .btn-zape-small {
        font-size: 0.75rem;
        padding: 8px 15px;
        flex: 1;
        /* Botones del mismo ancho */
        text-align: center;
    }

    /* 2. Hero Section */
    .zape-hero {
        padding-top: 100px;
        /* Espacio para el nav */
        padding-bottom: 60px;
        min-height: auto;
        /* Quitar altura forzada */
    }

    .big-title {
        font-size: 16vw;
        /* Escalado fluido basado en el ancho de pantalla */
        line-height: 0.9;
        margin-bottom: 15px;
    }

    .hero-tagline {
        font-size: 0.9rem;
        max-width: 100%;
        transform: rotate(-1deg);
        /* Menos rotación */
    }

    /* Botones en columna (Full Width) */
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        padding: 0 10px;
    }

    .btn-brutal {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 12px;
    }

    /* Stickers: Reducir y mover para que no tapen texto */
    .sticker {
        width: 60px;
        opacity: 0.4;
    }

    .s-1 {
        top: 10%;
        left: -10px;
    }

    .s-2 {
        bottom: 5%;
        right: -10px;
    }

    .s-3 {
        display: none;
    }

    /* Menos ruido visual */

    /* 3. Split Zone (De lado a lado -> Uno arriba de otro) */
    .split-zone {
        flex-direction: column;
    }

    .split-side {
        padding: 60px 20px;
        text-align: center;
        min-height: auto;
    }

    .side-title {
        font-size: 3.5rem;
    }

    .content-wrap {
        width: 100%;
    }

    /* Listas alineadas a la izquierda visualmente pero centradas en bloque */
    .check-list {
        display: inline-block;
        text-align: left;
        margin-bottom: 30px;
    }

    /* 4. Manifiesto (Tarjeta Mac) */
    .section-problem {
        padding: 60px 15px;
    }

    .brutalist-card {
        box-shadow: 8px 8px 0px var(--black);
        /* Sombra más pequeña */
        border-width: 3px;
    }

    .card-body-text {
        padding: 25px 15px;
    }

    .card-body-text h2 {
        font-size: 2rem;
        word-break: break-word;
        /* Evita que palabras largas rompan el ancho */
    }

    .problem-list li {
        font-size: 0.95rem;
    }

    /* 5. Founders Club */
    .section-founders {
        padding: 60px 15px;
    }

    .founders-box {
        padding: 40px 20px;
        border-width: 3px;
        box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.1);
    }

    .icon-crown {
        font-size: 3rem;
    }

    .founders-box h2 {
        font-size: 1.8rem;
    }

    .btn-mega {
        font-size: 1.1rem;
        padding: 15px;
        width: 100%;
        /* Botón gigante full width */
    }

    /* 6. Footer */
    .zape-footer {
        padding: 40px 20px;
    }
}

/* MÓVILES PEQUEÑOS (iPhone SE, etc) */
@media (max-width: 380px) {
    .big-title {
        font-size: 14vw;
    }

    .side-title {
        font-size: 2.8rem;
    }

    .btn-zape-small {
        font-size: 0.65rem;
        padding: 6px 10px;
    }
}