/* ==========================================
           COLORES
        ========================================== */

        :root {
            --sun: #FFD77A;
            --orange: #F57A3E;
            --coral: #E95B4B;
            --mauve: #A94768;
            --plum: #5A315B;

            --ink: #25283A;
            --ink-dark: #181725;

            --cream: #FFF4E1;
            --paper: #FFF9F0;

            --muted: #7A6B73;
        }


        /* ==========================================
           GENERAL
        ========================================== */

        * {
            box-sizing: border-box;
        }


        html {
            scroll-behavior: smooth;
        }


        body {
            margin: 0;

            font-family:
                "Plus Jakarta Sans",
                system-ui,
                sans-serif;

            background: var(--paper);

            color: var(--ink);
        }

        a {
            text-decoration: none;
            color: inherit;
        }



        /* ==========================================
           HEADER
        ========================================== */

        .site-header {

            position: absolute;

            top: 0;
            left: 50%;

            width: min(1440px, 94vw);

            transform: translateX(-50%);

            z-index: 20;

            padding: 20px 0;

            display: flex;

            align-items: center;

            justify-content: space-between;

            color: white;
        }



        /* ==========================================
           MARCA
        ========================================== */

        .brand {

            display: flex;

            align-items: center;

            gap: 12px;

            font-weight: 800;

            letter-spacing: .02em;
        }


        .brand-mark {

            width: 34px;

            height: 34px;

            border:
                2px solid rgba(255, 255, 255, .85);

            display: grid;

            place-items: center;

            background:
                rgba(255, 215, 122, .18);

            box-shadow:
                4px 4px 0 rgba(37, 40, 58, .42);

            font-size: 14px;

            font-weight: 800;

            backdrop-filter: blur(6px);
        }


        .brand-name {

            font-family:
                "Press Start 2P",
                monospace;

            font-size: 12px;

            line-height: 1;

            font-weight: 400;

            color: white;

            text-transform: uppercase;

            letter-spacing: 0;
        }



        /* ==========================================
           NAVBAR
        ========================================== */

        .main-nav {

            display: flex;

            transform: translateX(18px);

            align-items: center;

            gap: 6px;

            padding: 6px;

            border:
                1px solid rgba(255, 255, 255, .25);

            border-radius: 999px;

            background:
                rgba(72, 39, 64, .78);

            backdrop-filter: blur(10px);

            -webkit-backdrop-filter: blur(10px);

            box-shadow:
                0 4px 0 rgba(37, 26, 43, .22);
        }


        .main-nav a {

            padding: 11px 15px;

            border-radius: 999px;

            font-family:
                "Press Start 2P",
                monospace;

            font-size: 9px;

            line-height: 1;

            font-weight: 400;

            color: white;

            white-space: nowrap;

            transition:
                background .2s,
                transform .2s;
        }


        .main-nav a:hover {

            background:
                rgba(255, 255, 255, .12);
        }



        /* Soy inmobiliaria */

        .main-nav .nav-highlight {

            background: var(--sun);

            color: var(--ink);

            font-weight: 400;

            box-shadow:
                0 3px 0 rgba(37, 40, 58, .28);
        }


        .main-nav .nav-highlight:hover {

            background: #FFE29A;

            transform: translateY(-1px);
        }



        /* ==========================================
           HERO
        ========================================== */

        .hero {

            min-height: 680px;

            height: 82vh;

            position: relative;

            display: grid;

            align-items: end;

            overflow: hidden;


            background-image:

                linear-gradient(
                    180deg,
                    rgba(27, 25, 43, .08) 0%,
                    rgba(38, 24, 43, .04) 40%,
                    rgba(33, 27, 42, .70) 100%
                ),

                url("/assets/images/banner.png?v=6fdf5ac-20260919125538");


            background-size: cover;

            background-position: center;

            background-repeat: no-repeat;
        }



        /* Oscurecimiento inferior */

        .hero::before {

            content: "";

            position: absolute;

            left: 0;
            right: 0;
            bottom: 0;

            height: 46%;

            background:
                linear-gradient(
                    0deg,
                    rgba(37, 40, 58, .50),
                    transparent
                );

            pointer-events: none;
        }



        /* ==========================================
           CONTENIDO HERO
        ========================================== */

        .hero-inner {

            width: min(1440px, 94vw);

            margin: 0 auto;

            padding-bottom: 66px;

            position: relative;

            z-index: 2;

            color: white;
        }



        /* ==========================================
           TÍTULO
        ========================================== */

        .hero h1 {

            margin: 0;

            max-width: 780px;

            font-family:
                "Space Grotesk",
                sans-serif;

            font-size:
                clamp(44px, 6vw, 82px);

            line-height: .94;

            letter-spacing: -.055em;

            font-weight: 700;

            color: white;
        }



        /* ==========================================
           TEXTO HERO
        ========================================== */

        .hero-copy {

            max-width: 680px;

            margin-top: 25px;

            font-size: 18px;

            line-height: 1.6;

            color:
                rgba(255, 255, 255, .90);
        }



        /* ==========================================
           CTA
        ========================================== */

        .hero-actions {

            margin-top: 30px;

            display: flex;
        }



        .btn {

            display: inline-flex;

            align-items: center;

            justify-content: center;

            padding: 0 20px;

            min-height: 48px;

            font-family:
                "Press Start 2P",
                monospace;

            font-size: 9px;

            line-height: 1;

            text-transform: uppercase;

            transition:
                transform .14s ease,
                box-shadow .14s ease,
                background .14s ease;
        }



        .btn-primary {

            background: var(--sun);

            color: var(--ink-dark);

            border:
                2px solid var(--ink-dark);

            border-radius: 6px;

            box-shadow:
                0 4px 0 #A97716,
                3px 3px 0 rgba(24, 23, 37, .20);
        }


        .btn-primary:hover {

            background: #FFE187;

            transform: translateY(-1px);

            box-shadow:
                0 5px 0 #A97716,
                3px 4px 0 rgba(24, 23, 37, .20);
        }


        .btn-primary:active {

            transform: translateY(2px);

            box-shadow:
                0 2px 0 #A97716;
        }



        /* ==========================================
           MAIN
        ========================================== */

        main {

            width:
                min(1440px, 94vw);

            margin:
                0 auto;
        }



        /* ==========================================
           INTRO EDITORIAL / SLIDER
        ========================================== */

        .intro-editorial {
            position: relative;
            padding: 44px 0 48px;
            overflow: hidden;
        }

        .intro-slider {
            width: 100%;
            overflow: hidden;
        }

        .intro-slider-track {
            display: flex;
            width: 100%;
            transition: transform .45s cubic-bezier(.65, 0, .35, 1);
            will-change: transform;
        }

        .intro-slide {
            flex: 0 0 100%;
            min-width: 100%;
            display: grid;
            grid-template-columns:
                minmax(320px, .8fr)
                minmax(460px, 1.2fr);
            align-items: center;
            gap: clamp(55px, 7vw, 110px);
        }

        .intro-visual {
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

        .intro-visual img {
            display: block;
            width: auto;
            max-width: 440px;
            max-height: 320px;
            height: auto;
            object-fit: contain;
        }

        .intro-content {
            max-width: 650px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .intro-pixel-accent {
            display: flex;
            gap: 5px;
            margin-bottom: 22px;
        }

        .intro-pixel-accent span {
            width: 9px;
            height: 9px;
            background: var(--orange);
        }

        .intro-pixel-accent span:nth-child(2) {
            background: var(--mauve);
        }

        .intro-pixel-accent span:nth-child(3) {
            background: var(--plum);
        }

        .intro-pixel-accent span:nth-child(4) {
            background: var(--sun);
        }

        .intro-content h2 {
            margin: 0;
            font-family:
                "Space Grotesk",
                sans-serif;
            font-size:
                clamp(42px, 4vw, 62px);
            line-height: .98;
            letter-spacing: -.045em;
            font-weight: 700;
            color: var(--ink);
        }

        .intro-content p {
            margin: 26px 0 0;
            max-width: 620px;
            font-family:
                "Space Grotesk",
                sans-serif;
            font-size: 19px;
            line-height: 1.65;
            color: #625662;
        }


        /* ==========================================
           SLIDE 1 / PROBLEMA EN CORRIENTES
        ========================================== */

        .problem-content {
            width: 100%;
            max-width: 700px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .problem-content h2 {
            margin: 0 0 30px;
            text-align: center;
            font-family: "Space Grotesk", sans-serif;
            font-size: clamp(34px, 3.2vw, 50px);
            line-height: .98;
            letter-spacing: -.045em;
            font-weight: 700;
            color: var(--ink);
            max-width: 560px;
        }

        .problem-city {
            color: var(--orange);
        }

        .problem-stats {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
            align-items: stretch;
            gap: 38px;
            width: 100%;
        }

        .problem-divider {
            width: 1px;
            background: rgba(90, 49, 91, .24);
        }

        .problem-stat {
            min-width: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .problem-stat-visual {
            height: 150px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .problem-stat:last-child .problem-grid {
            align-self: center;
        }

        .problem-stat-visual svg {
            display: block;
            width: 190px;
            height: 96px;
            overflow: visible;
        }

        .problem-stat p {
            margin: 0;
            max-width: 252px;
            font-family: "Space Grotesk", sans-serif;
            font-size: 18px;
            line-height: 1.48;
            font-weight: 500;
            color: #625662;
        }

        .problem-number {
            color: var(--orange);
            font-weight: 700;
        }

        .problem-grid {
            display: grid;
            grid-template-columns: repeat(7, 10px);
            grid-template-rows: repeat(10, 10px);
            gap: 5px;
        }

        .problem-grid span {
            width: 10px;
            height: 10px;
            background: var(--mauve);
        }

        .problem-grid span.lit {
            background: var(--orange);
        }

        /* ==========================================
           CONTROLES RETRO DEL SLIDER
        ========================================== */

        .intro-slider-controls {
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 3;
            pointer-events: none;
        }

        .intro-slider-arrow {
            width: 48px;
            height: 44px;
            padding: 0;
            display: grid;
            place-items: center;
            border: 2px solid var(--ink-dark);
            border-radius: 2px;
            background: var(--cream);
            box-shadow: 4px 4px 0 #8D898A;
            cursor: pointer;
            pointer-events: auto;
            transition:
                transform .12s ease,
                box-shadow .12s ease,
                background .12s ease;
        }

        .intro-slider-arrow:hover {
            background: var(--sun);
            transform: translate(-1px, -1px);
            box-shadow: 5px 5px 0 #8D898A;
        }

        .intro-slider-arrow:active {
            transform: translate(2px, 2px);
            box-shadow: 2px 2px 0 #8D898A;
        }

        .intro-slider-arrow:focus-visible {
            outline: 2px solid var(--plum);
            outline-offset: 4px;
        }

        .intro-slider-arrow svg {
            width: 18px;
            height: 18px;
            display: block;
            fill: var(--plum);
            shape-rendering: crispEdges;
        }

        /* ==========================================
           SEPARACIÓN RETRO ENTRE SECCIONES
        ========================================== */

        .cards-zone {

            margin:
                0 calc(50% - 50vw);

            padding:
                18px
                max(
                    3vw,
                    calc((100vw - 1440px) / 2)
                )
                0;

            background: #F5E8CF;

            border-top:
                1px solid rgba(90, 49, 91, .12);
        }


        .cards-section-bar {

            width: min(1180px, 100%);

            min-height: 42px;

            margin: 0 auto;

            padding: 0 14px;

            display: flex;

            align-items: center;

            justify-content: space-between;

            background: var(--orange);

            border:
                2px solid #382B3A;

            box-shadow:
                4px 4px 0 var(--plum);

            color: var(--ink-dark);
        }


        .cards-section-bar-title {

            display: flex;

            align-items: center;

            gap: 10px;

            font-family:
                "Press Start 2P",
                monospace;

            font-size: 8px;

            line-height: 1;

            text-transform: uppercase;
        }


        .cards-section-bar-dots {

            display: flex;

            align-items: center;

            gap: 4px;
        }


        .cards-section-bar-dots span {

            width: 8px;
            height: 8px;

            border:
                1px solid #382B3A;

            background: var(--sun);
        }


        .cards-section-bar-dots span:nth-child(2) {

            background: #FFF4E1;
        }


        .cards-section-bar-dots span:nth-child(3) {

            background: var(--plum);
        }


        /* ==========================================
           CARDS
        ========================================== */

        .cards {

            width: min(1180px, 100%);

            margin: 0 auto;

            display: grid;

            grid-template-columns:
                repeat(3, 1fr);

            gap: 16px;

            padding:
                12px 0 72px;
        }


        .card {

            min-height: 245px;

            border:
                2px solid #382B3A;

            border-radius: 5px;

            padding: 0;

            background: #F5E8CD;

            box-shadow:
                4px 4px 0 #8A8A84,
                6px 6px 0 rgba(56, 43, 58, .16);

            overflow: hidden;

            display: flex;

            flex-direction: column;

            cursor: pointer;

            transition:
                transform .12s ease,
                box-shadow .12s ease;
        }


        .card:hover {

            transform: translate(3px, 3px);

            box-shadow:
                1px 1px 0 #8A8A84,
                2px 2px 0 rgba(56, 43, 58, .14);
        }


        .card:active {

            transform: translate(4px, 4px);

            box-shadow: none;
        }


        .card:nth-child(2) {

            background: #F1E3C5;
        }


        .card:nth-child(3) {

            background: #F3E7CF;
        }


        .card-titlebar {

            min-height: 32px;

            padding: 8px 10px;

            display: flex;

            align-items: center;

            justify-content: space-between;

            background: var(--plum);

            border-bottom:
                2px solid #382B3A;

            color: var(--paper);

            font-family:
                "Press Start 2P",
                monospace;

            font-size: 7px;

            line-height: 1;

            text-transform: uppercase;
        }


        .card-close-icon {

            position: relative;

            width: 12px;
            height: 12px;

            flex: 0 0 auto;

            background: #8D8D8D;

            border:
                2px solid #382B3A;

            box-shadow:
                inset 1px 1px 0 #D8D8D8,
                inset -1px -1px 0 #555555,
                1px 1px 0 rgba(0, 0, 0, .14);
        }


        .card-close-icon::after {

            content: "";

            position: absolute;

            width: 4px;
            height: 4px;

            top: 2px;
            left: 2px;

            background: #C7C7C7;

            border:
                1px solid #5B5B5B;
        }


        .card-content {

            flex: 1;

            padding: 15px 18px 18px;

            display: flex;

            flex-direction: column;

            justify-content: flex-start;
        }


        .card-image {

            display: block;

            width: 100%;

            height: 108px;

            margin: 0 auto 15px;

            object-fit: contain;

            object-position: center;

            image-rendering: pixelated;
        }


        .card p {

            margin: 0;

            max-width: 310px;

            font-family:
                "Press Start 2P",
                monospace;

            font-size: 8px;

            line-height: 1.75;

            font-weight: 400;

            color: #302936;
        }



        /* ==========================================
           INMOBILIARIAS
        ========================================== */

        .strip {

            margin:
                0 calc(50% - 50vw);

            padding:
                58px
                max(
                    3vw,
                    calc((100vw - 1440px) / 2)
                );

            background: var(--ink);

            color: white;

            display: grid;

            grid-template-columns:
                1fr auto;

            gap: 30px;

            align-items: center;
        }


        .strip h3 {

            margin:
                0 0 8px;

            font-size: 34px;

            letter-spacing: -.03em;

            font-family:
                "Space Grotesk",
                sans-serif;
        }


        .strip p {

            margin: 0;

            max-width: 700px;

            line-height: 1.6;

            color:
                rgba(255, 255, 255, .68);
        }



        /* ==========================================
           CONTACTO
        ========================================== */

        .contact-section {

            margin:
                0 calc(50% - 50vw);

            padding:
                76px
                max(
                    3vw,
                    calc((100vw - 1180px) / 2)
                );

            display: grid;

            grid-template-columns:
                minmax(260px, .78fr)
                minmax(440px, 1.22fr);

            gap: clamp(42px, 7vw, 112px);

            align-items: center;

            background: var(--cream);

            border-top:
                1px solid rgba(90, 49, 91, .18);
        }


        .contact-copy {

            max-width: 460px;
        }


        .contact-copy h2 {

            margin: 0;

            font-family:
                "Space Grotesk",
                sans-serif;

            font-size:
                clamp(38px, 4vw, 58px);

            line-height: .98;

            letter-spacing: -.045em;

            color: var(--ink);
        }


        .contact-copy p {

            margin: 24px 0 0;

            font-size: 18px;

            line-height: 1.62;

            color: #625662;
        }


        .contact-form {

            overflow: hidden;

            border:
                2px solid #382B3A;

            border-radius: 5px;

            background: #F5E8CD;

            box-shadow:
                5px 5px 0 var(--plum),
                8px 8px 0 rgba(56, 43, 58, .12);
        }


        .contact-form-titlebar {

            min-height: 40px;

            padding: 0 12px;

            display: flex;

            align-items: center;

            justify-content: space-between;

            background: var(--plum);

            color: var(--cream);

            font-family:
                "Press Start 2P",
                monospace;

            font-size: 7px;

            line-height: 1;

            text-transform: uppercase;
        }


        .contact-form-dots {

            display: flex;

            gap: 4px;
        }


        .contact-form-dots i {

            width: 8px;

            height: 8px;

            border:
                1px solid #382B3A;

            background: var(--sun);
        }


        .contact-form-dots i:nth-child(2) {

            background: var(--orange);
        }


        .contact-form-dots i:nth-child(3) {

            background: var(--mauve);
        }


        .contact-form-fields {

            padding: 24px;

            display: grid;

            grid-template-columns: repeat(2, minmax(0, 1fr));

            gap: 18px;
        }


        .contact-field {

            min-width: 0;

            display: grid;

            gap: 8px;
        }


        .contact-field--full {

            grid-column: 1 / -1;
        }


        .contact-field label {

            color: var(--plum);

            font-family:
                "Press Start 2P",
                monospace;

            font-size: 7px;

            line-height: 1.5;

            text-transform: uppercase;
        }


        .field-required {

            color: var(--coral);
        }


        .field-optional {

            color: var(--muted);

            font-family:
                "Space Grotesk",
                sans-serif;

            font-size: 12px;

            font-weight: 600;

            text-transform: none;
        }


        .contact-field input,
        .contact-field textarea {

            width: 100%;

            border:
                2px solid rgba(90, 49, 91, .42);

            border-radius: 3px;

            background: #FFF9F0;

            color: var(--ink);

            font-family:
                "Space Grotesk",
                sans-serif;

            font-size: 16px;

            line-height: 1.45;

            outline: none;

            transition:
                border-color .12s ease,
                box-shadow .12s ease;
        }


        .contact-field input {

            min-height: 46px;

            padding: 10px 12px;
        }


        .contact-field textarea {

            min-height: 132px;

            padding: 12px;

            resize: vertical;
        }


        .contact-field input:focus,
        .contact-field textarea:focus {

            border-color: var(--orange);

            box-shadow: 3px 3px 0 rgba(245, 122, 62, .34);
        }


        .contact-honeypot,
        .sr-only {

            position: absolute;

            width: 1px;

            height: 1px;

            padding: 0;

            margin: -1px;

            overflow: hidden;

            clip: rect(0, 0, 0, 0);

            white-space: nowrap;

            border: 0;
        }


        .contact-submit {

            justify-self: start;

            border-radius: 4px;

            cursor: pointer;
        }


        .contact-submit:disabled {

            cursor: wait;

            opacity: .72;
        }


        .contact-status {

            grid-column: 1 / -1;

            margin: 0;

            color: var(--plum);

            font-size: 15px;

            font-weight: 600;

            line-height: 1.45;
        }


        .contact-status.is-error {

            color: #AF392E;
        }



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

        @media (max-width: 820px) {

            .main-nav {
                display: none;
            }


            .hero {

                min-height: 620px;

                height: 78vh;
            }


            .hero h1 {

                font-size:
                    clamp(40px, 10vw, 64px);
            }


            .hero-copy {

                font-size: 16px;
            }


            .intro-editorial {
                padding: 50px 0 60px;
            }

            .intro-slide {
                grid-template-columns: 1fr;
                gap: 38px;
            }

            .intro-visual {
                justify-content: center;
            }

            .intro-visual img {
                max-width: 390px;
            }

            .intro-content {
                max-width: 680px;
                margin: 0 auto;
            }


            .problem-content {
                max-width: 680px;
                margin: 0 auto;
            }

            .problem-stats {
                gap: 24px;
            }


            .cards {

                grid-template-columns: 1fr;
            }


            .strip {

                grid-template-columns: 1fr;
            }


            .contact-section {

                grid-template-columns: 1fr;

                gap: 40px;

                padding-top: 60px;

                padding-bottom: 60px;
            }


            .contact-copy {

                max-width: 680px;
            }


        }



        @media (max-width: 600px) {

            .intro-visual img {
                max-width: 310px;
                max-height: 240px;
            }

            .intro-content h2 {
                font-size:
                    clamp(36px, 11vw, 48px);
            }

            .intro-content p {
                font-size: 17px;
            }


            .problem-content h2 {
                margin-bottom: 28px;
                font-size: clamp(34px, 10vw, 44px);
            }

            .problem-stats {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .problem-divider {
                width: 100%;
                height: 1px;
            }

            .problem-stat p {
                font-size: 17px;
            }


            .contact-section {

                padding:
                    52px 4vw;
            }


            .contact-copy h2 {

                font-size:
                    clamp(36px, 11vw, 48px);
            }


            .contact-copy p {

                font-size: 17px;
            }


            .contact-form-fields {

                grid-template-columns: 1fr;

                padding: 18px;
            }


            .contact-submit {

                width: 100%;
            }
        }



        /* Las reglas finales de la ventana retro reemplazan la postal anterior. */

        .contact-copy {

            max-width: none;

            padding: 10px 0 0;

            display: flex;

            flex-direction: column;

            align-items: flex-start;
        }


        .contact-copy .intro-pixel-accent {

            margin-bottom: 16px;
        }


        .contact-copy h2 {

            max-width: 260px;

            font-size:
                clamp(28px, 2.7vw, 40px);

            line-height: .95;
        }


        .contact-copy p {

            max-width: 238px;

            margin: 0;

            font-size: 15px;

            line-height: 1.48;
        }


        .contact-form {

            align-self: center;

            min-width: 0;

            padding: 0;

            overflow: hidden;

            border:
                2px solid #382B3A;

            border-radius: 4px;

            background: #FFF9F0;

            box-shadow:
                4px 4px 0 var(--plum),
                6px 6px 0 rgba(56, 43, 58, .12);
        }


        .contact-form-titlebar {

            min-height: 34px;

            margin: 0;

            padding: 0 10px;

            justify-content: space-between;

            background: var(--plum);

            color: #FFF4E1;

            font-size: 7px;
        }


        .contact-form-dots {

            display: flex;

            gap: 5px;
        }


        .contact-form-dots i {

            width: 10px;

            height: 10px;

            border:
                1px solid #382B3A;

            background: #FFF4E1;
        }


        .contact-form-dots i:nth-child(2) {

            background: var(--sun);
        }


        .contact-form-dots i:nth-child(3) {

            background: var(--coral);
        }


        .contact-form-fields {

            max-width: none;

            padding: 18px;

            grid-template-columns: 1fr;

            gap: 11px;
        }


        .contact-field {

            gap: 5px;
        }


        .contact-field label {

            font-size: 6px;
        }


        .contact-field input,
        .contact-field textarea {

            border-color: rgba(90, 49, 91, .66);

            border-radius: 1px;

            background: #FFFDF7;

            font-size: 14px;
        }


        .contact-field input {

            min-height: 36px;

            padding: 7px 9px;
        }


        .contact-field textarea {

            min-height: 82px;

            padding: 9px;
        }


        .contact-submit {

            width: 100%;

            min-height: 42px;

            padding: 0 14px;

            border-radius: 2px;

            background: var(--orange);

            color: #FFF9F0;

            box-shadow:
                3px 3px 0 var(--plum);

            font-size: 7px;
        }


        .contact-submit:hover {

            background: #FF8A4D;

            transform: translate(-1px, -1px);

            box-shadow:
                4px 4px 0 var(--plum);
        }


        .contact-submit:active {

            transform: translate(2px, 2px);

            box-shadow:
                1px 1px 0 var(--plum);
        }


        @media (max-width: 920px) {

            .contact-copy {

                max-width: none;

                padding: 10px 0 0;
            }


            .contact-form {

                padding: 0;
            }
        }


        @media (max-width: 600px) {

            .contact-copy {

                padding: 0;
            }


            .contact-copy h2 {

                font-size:
                    clamp(30px, 10vw, 40px);
            }


            .contact-copy p {

                max-width: 300px;

                font-size: 15px;
            }


            .contact-form {

                padding: 0;
            }


            .contact-form-fields {

                padding: 16px;
            }
        }



        /* ==========================================
           CONTACTO / VENTANA RETRO
        ========================================== */

        .contact-section {

            padding:
                64px
                max(
                    3vw,
                    calc((100vw - 1180px) / 2)
                );

            background: #F2E5CE;
        }


        .contact-retro-window {

            width: min(1160px, 100%);

            margin: 0 auto;

            overflow: hidden;

            border:
                2px solid #382B3A;

            border-radius: 5px;

            background: #FFF4E1;

            box-shadow:
                5px 5px 0 var(--plum),
                8px 8px 0 rgba(56, 43, 58, .13);
        }


        .contact-retro-titlebar {

            min-height: 44px;

            padding: 0 14px;

            display: flex;

            align-items: center;

            justify-content: space-between;

            border-bottom:
                2px solid #382B3A;

            background: var(--orange);

            color: var(--ink-dark);

            font-family:
                "Press Start 2P",
                monospace;

            font-size: 8px;

            line-height: 1;

            text-transform: uppercase;
        }


        .contact-retro-controls {

            display: flex;

            gap: 5px;
        }


        .contact-retro-controls i {

            width: 9px;

            height: 9px;

            border:
                1px solid #382B3A;

            background: #FFF4E1;
        }


        .contact-retro-controls i:nth-child(2) {

            background: var(--sun);
        }


        .contact-retro-controls i:nth-child(3) {

            background: var(--plum);
        }


        .contact-retro-body {

            position: relative;

            min-height: 438px;

            padding: 28px;

            display: grid;

            grid-template-columns:
                minmax(210px, .74fr)
                minmax(330px, 1.32fr)
                minmax(112px, .38fr);

            gap: clamp(20px, 3vw, 42px);

            background: #FFF4E1;
        }


        .contact-copy {

            max-width: none;

            padding: 10px 0 0;

            display: flex;

            flex-direction: column;

            align-items: flex-start;
        }


        .contact-copy .intro-pixel-accent {

            margin-bottom: 16px;
        }


        .contact-copy h2 {

            max-width: 260px;

            color: var(--ink);

            font-size:
                clamp(28px, 2.7vw, 40px);

            line-height: .95;
        }


        .contact-copy h2 span {

            color: var(--orange);
        }


        .contact-copy-rule {

            width: 34px;

            height: 2px;

            margin: 16px 0;

            background: var(--plum);
        }


        .contact-copy p {

            max-width: 238px;

            margin: 0;

            color: #625662;

            font-size: 15px;

            line-height: 1.48;
        }


        .contact-sign {

            position: relative;

            width: 112px;

            height: 106px;

            margin-top: auto;

            overflow: hidden;

            background:
                #FFD77A
                url("/assets/images/contacto-cartel.png?v=6fdf5ac-20260919125538")
                center / contain no-repeat;
        }


        .contact-sign span {

            position: absolute;

            top: 30px;

            right: 12px;

            left: 12px;

            color: var(--ink-dark);

            font-family:
                "Press Start 2P",
                monospace;

            font-size: 6px;

            line-height: 1.5;

            text-align: center;

            text-transform: uppercase;
        }


        .contact-form {

            align-self: center;

            min-width: 0;

            padding: 0;

            overflow: hidden;

            border:
                2px solid #382B3A;

            border-radius: 4px;

            background: #FFF9F0;

            box-shadow:
                4px 4px 0 var(--plum),
                6px 6px 0 rgba(56, 43, 58, .12);
        }


        .contact-form-titlebar {

            min-height: 34px;

            margin: 0;

            padding: 0 10px;

            justify-content: space-between;

            background: var(--plum);

            color: #FFF4E1;

            font-size: 7px;
        }


        .contact-form-dots {

            display: flex;

            gap: 5px;
        }


        .contact-form-dots i {

            width: 10px;

            height: 10px;

            border:
                1px solid #382B3A;

            background: #FFF4E1;
        }


        .contact-form-dots i:nth-child(2) {

            background: var(--sun);
        }


        .contact-form-dots i:nth-child(3) {

            background: var(--coral);
        }


        .contact-form-fields {

            max-width: none;

            padding: 18px;

            grid-template-columns: 1fr;

            gap: 11px;
        }


        .contact-field {

            gap: 5px;
        }


        .contact-field label {

            font-size: 6px;
        }


        .contact-field input,
        .contact-field textarea {

            border-color: rgba(90, 49, 91, .66);

            border-radius: 1px;

            background: #FFFDF7;

            font-size: 14px;
        }


        .contact-field input {

            min-height: 36px;

            padding: 7px 9px;
        }


        .contact-field textarea {

            min-height: 82px;

            padding: 9px;
        }


        .contact-submit {

            width: 100%;

            min-height: 42px;

            border-radius: 2px;

            background: var(--orange);

            color: #FFF9F0;

            box-shadow:
                3px 3px 0 var(--plum);

            font-size: 7px;
        }


        .contact-city-copy {

            position: relative;

            min-height: 100%;

            margin: 0;

            padding-top: 76px;

            display: flex;

            align-items: flex-start;

            justify-content: flex-end;
        }


        .contact-city-copy p {

            width: 96px;

            margin: 0;

            color: var(--plum);

            font-family:
                "Press Start 2P",
                monospace;

            font-size: 6px;

            line-height: 1.6;

            text-align: right;

            text-transform: uppercase;
        }


        .contact-city-illustration {

            position: absolute;

            right: -12px;

            bottom: -28px;

            width: 166px;

            height: 228px;

            pointer-events: none;

            background:
                url("/assets/images/contacto-ciudad.png?v=6fdf5ac-20260919125538")
                right bottom / contain no-repeat;
        }


        @media (max-width: 920px) {

            .contact-retro-body {

                grid-template-columns:
                    minmax(190px, .75fr)
                    minmax(320px, 1.25fr);
            }


            .contact-city-copy {

                grid-column: 1 / -1;

                min-height: 124px;

                padding-top: 12px;
            }


            .contact-city-copy p {

                margin-left: auto;
            }


            .contact-city-illustration {

                right: 0;

                bottom: -28px;
            }
        }


        @media (max-width: 600px) {

            .contact-section {

                padding: 34px 3vw 42px;
            }


            .contact-retro-window {

                box-shadow:
                    4px 4px 0 var(--plum);
            }


            .contact-retro-titlebar {

                min-height: 40px;

                font-size: 7px;
            }


            .contact-retro-body {

                min-height: 0;

                padding: 22px 18px 0;

                grid-template-columns: 1fr;

                gap: 24px;
            }


            .contact-copy {

                padding: 0;
            }


            .contact-copy h2 {

                font-size:
                    clamp(30px, 10vw, 40px);
            }


            .contact-copy p {

                max-width: 300px;

                font-size: 15px;
            }


            .contact-sign {

                display: none;
            }


            .contact-city-copy {

                display: none;
            }


            .contact-form-fields {

                padding: 16px;
            }
        }



        /* ==========================================
           CONTACTO / POSTAL
        ========================================== */

        .contact-section {

            display: block;

            padding:
                64px
                max(
                    3vw,
                    calc((100vw - 1180px) / 2)
                );

            background: #F2E5CE;
        }


        .contact-postcard {

            position: relative;

            width: min(1080px, 100%);

            margin: 0 auto;

            padding: 18px;

            display: grid;

            grid-template-columns:
                minmax(230px, .8fr)
                minmax(390px, 1.2fr);

            gap: clamp(34px, 5vw, 78px);

            overflow: hidden;

            border:
                2px solid #382B3A;

            background:
                repeating-linear-gradient(
                    135deg,
                    var(--coral) 0 9px,
                    #FFF9F0 9px 18px,
                    var(--plum) 18px 27px,
                    #FFF9F0 27px 36px
                );

            box-shadow:
                5px 5px 0 var(--plum),
                8px 8px 0 rgba(56, 43, 58, .13);
        }


        .contact-postcard::before {

            content: "";

            position: absolute;

            inset: 12px;

            z-index: 0;

            background: #FFF9F0;
        }


        .contact-copy,
        .contact-form {

            position: relative;

            z-index: 1;
        }


        .contact-copy {

            align-self: stretch;

            padding: 34px 0 138px 26px;
        }


        .contact-copy h2 {

            max-width: 290px;

            color: var(--ink);

            font-size:
                clamp(30px, 3vw, 42px);
        }


        .contact-copy h2 span {

            color: var(--orange);
        }


        .contact-copy p {

            max-width: 290px;

            color: #625662;

            font-size: 16px;

            line-height: 1.5;
        }


        .contact-form {

            align-self: center;

            min-width: 0;

            padding: 36px 126px 34px 0;

            overflow: visible;

            border: 0;

            border-radius: 0;

            background: transparent;

            box-shadow: none;
        }


        .contact-form-titlebar {

            min-height: auto;

            margin: 0 0 18px;

            padding: 0;

            justify-content: flex-start;

            background: transparent;

            color: var(--mauve);

            font-size: 6px;
        }


        .contact-form-dots {

            display: none;
        }


        .contact-form-fields {

            max-width: 390px;

            padding: 0;

            grid-template-columns: 1fr;

            gap: 13px;
        }


        .contact-field--full {

            grid-column: auto;
        }


        .contact-field {

            gap: 5px;
        }


        .contact-field label {

            color: var(--plum);

            font-size: 6px;
        }


        .contact-field input,
        .contact-field textarea {

            border-color: rgba(90, 49, 91, .58);

            border-radius: 1px;

            background: #FFFDF7;

            font-size: 14px;
        }


        .contact-field input {

            min-height: 40px;

            padding: 8px 10px;
        }


        .contact-field textarea {

            min-height: 104px;

            padding: 10px;
        }


        .contact-submit {

            width: 100%;

            min-height: 44px;

            padding: 0 14px;

            border-radius: 2px;

            background: var(--orange);

            color: #FFF9F0;

            box-shadow:
                3px 3px 0 var(--plum);

            font-size: 7px;
        }


        .contact-submit:hover {

            background: #FF8A4D;

            transform: translate(-1px, -1px);

            box-shadow:
                4px 4px 0 var(--plum);
        }


        .contact-submit:active {

            transform: translate(2px, 2px);

            box-shadow:
                1px 1px 0 var(--plum);
        }


        .contact-postal-stamp {

            position: absolute;

            z-index: 1;

            top: 34px;

            right: 34px;

            width: 92px;

            height: 112px;

            border:
                2px solid var(--mauve);

            background:
                #FFF4E1
                url("/assets/images/contacto-sello.png?v=6fdf5ac-20260919125538")
                center / contain no-repeat;
        }


        .contact-postal-stamp::after {

            content: "OgaData";

            position: absolute;

            right: 4px;

            bottom: 4px;

            left: 4px;

            color: var(--plum);

            font-family:
                "Press Start 2P",
                monospace;

            font-size: 5px;

            line-height: 1.35;

            text-align: center;

            text-transform: uppercase;
        }


        .contact-postal-postmark {

            position: absolute;

            z-index: 1;

            top: 69px;

            right: 138px;

            width: 72px;

            height: 42px;

            color: var(--plum);

            transform: rotate(7deg);
        }


        .contact-postal-postmark svg {

            display: block;

            width: 100%;

            height: 100%;
        }


        .contact-postal-postmark path {

            fill: none;

            stroke: currentColor;

            stroke-width: 2;

            stroke-linecap: round;

            stroke-linejoin: round;
        }


        .contact-postal-landscape {

            position: absolute;

            z-index: 1;

            bottom: 22px;

            left: 28px;

            width: min(270px, 30%);

            height: 118px;

            pointer-events: none;

            background:
                url("/assets/images/contacto-paisaje.png?v=6fdf5ac-20260919125538")
                left bottom / contain no-repeat;
        }


        @media (max-width: 820px) {

            .contact-section {

                padding-top: 54px;

                padding-bottom: 54px;
            }


            .contact-postcard {

                grid-template-columns: 1fr;

                gap: 0;
            }


            .contact-copy {

                max-width: 460px;

                padding: 28px 150px 30px 26px;
            }


            .contact-form {

                padding: 20px 150px 36px 26px;
            }


            .contact-postal-landscape {

                display: none;
            }
        }


        @media (max-width: 600px) {

            .contact-section {

                padding: 34px 3vw 42px;
            }


            .contact-postcard {

                padding: 14px;

                box-shadow:
                    4px 4px 0 var(--plum);
            }


            .contact-postcard::before {

                inset: 9px;
            }


            .contact-copy {

                padding: 24px 116px 20px 18px;
            }


            .contact-copy h2 {

                font-size:
                    clamp(31px, 10vw, 42px);
            }


            .contact-copy p {

                font-size: 15px;
            }


            .contact-form {

                padding: 20px 18px 24px;
            }


            .contact-form-fields {

                max-width: none;

                padding: 0;
            }


            .contact-postal-stamp {

                top: 26px;

                right: 24px;

                width: 70px;

                height: 86px;
            }


            .contact-postal-stamp::after {

                font-size: 4px;
            }


            .contact-postal-postmark {

                top: 53px;

                right: 102px;
            }


            .contact-postal-postmark {

                width: 52px;

                height: 31px;
            }


            .contact-submit {

                width: 100%;
            }
        }



        /* Ventana retro: estas reglas quedan después de la postal retirada. */

        .contact-section {
            padding:
                48px
                max(
                    3vw,
                    calc((100vw - 1180px) / 2)
                );

            border: 0;
        }

        .contact-retro-window {
            width: min(1180px, 100%);
            overflow: visible;
            border: 0;
            border-radius: 0;
            background: transparent;
            box-shadow: none;
        }

        .contact-retro-body {
            min-height: 360px;
            padding: 24px;
            grid-template-columns:
                minmax(195px, .72fr)
                minmax(330px, 1.35fr)
                minmax(96px, .3fr);
            gap: clamp(18px, 2.5vw, 30px);
            background: transparent;
        }

        .contact-copy {
            max-width: none;
            padding: 10px 0 0;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .contact-copy .intro-pixel-accent { margin-bottom: 16px; }

        .contact-copy h2 {
            max-width: 260px;
            font-size: clamp(28px, 2.7vw, 40px);
            line-height: .95;
        }

        .contact-copy p {
            max-width: 238px;
            margin: 0;
            font-size: 15px;
            line-height: 1.48;
        }

        .contact-form {
            align-self: center;
            min-width: 0;
            padding: 0;
            overflow: hidden;
            border: 2px solid #382B3A;
            border-radius: 4px;
            background: #FFF9F0;
            box-shadow: 4px 4px 0 var(--plum), 6px 6px 0 rgba(56, 43, 58, .12);
        }

        .contact-form-titlebar {
            min-height: 34px;
            margin: 0;
            padding: 0 10px;
            justify-content: space-between;
            background: var(--plum);
            color: #FFF4E1;
            font-size: 7px;
        }

        .contact-form-dots { display: flex; gap: 5px; }

        .contact-form-dots i {
            width: 10px;
            height: 10px;
            border: 1px solid #382B3A;
            background: #FFF4E1;
        }

        .contact-form-dots i:nth-child(2) { background: var(--sun); }
        .contact-form-dots i:nth-child(3) { background: var(--coral); }

        .contact-form-fields {
            max-width: none;
            padding: 18px;
            grid-template-columns: 1fr;
            gap: 11px;
        }

        .contact-field { gap: 5px; }
        .contact-field label { font-size: 6px; }

        .contact-field input,
        .contact-field textarea {
            border-color: rgba(90, 49, 91, .66);
            border-radius: 1px;
            background: #FFFDF7;
            font-size: 14px;
        }

        .contact-field input {
            min-height: 36px;
            padding: 7px 9px;
        }

        .contact-field textarea {
            min-height: 82px;
            padding: 9px;
        }

        .contact-submit {
            width: 100%;
            min-height: 42px;
            padding: 0 14px;
            border-radius: 2px;
            background: var(--orange);
            color: #FFF9F0;
            box-shadow: 3px 3px 0 var(--plum);
            font-size: 7px;
        }

        .contact-submit:hover {
            background: #FF8A4D;
            transform: translate(-1px, -1px);
            box-shadow: 4px 4px 0 var(--plum);
        }

        .contact-submit:active {
            transform: translate(2px, 2px);
            box-shadow: 1px 1px 0 var(--plum);
        }

        .contact-city-copy {
            position: static;
            min-height: 0;
            padding: 0;
            display: block;
        }

        .contact-city-copy p {
            position: absolute;
            z-index: 1;
            top: 24px;
            right: 0;
            width: 104px;
            margin: 0;
        }

        .contact-city-illustration {
            z-index: 0;
            right: auto;
            bottom: -18px;
            left: 31%;
            width: min(680px, 69%);
            height: 340px;
            background-position: center bottom;
        }

        @media (max-width: 920px) {
            .contact-retro-body {
                grid-template-columns:
                    minmax(190px, .75fr)
                    minmax(320px, 1.25fr);
            }

            .contact-copy {
                max-width: none;
                padding: 10px 0 0;
            }

            .contact-form { padding: 0; }

            .contact-city-illustration {
                left: 25%;
                width: min(620px, 78%);
            }
        }

        @media (max-width: 600px) {
            .contact-section {
                padding: 30px 3vw 38px;
            }

            .contact-retro-body {
                min-height: 0;
                padding: 22px 18px 0;
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .contact-copy { padding: 0; }

            .contact-copy h2 {
                font-size: clamp(30px, 10vw, 40px);
            }

            .contact-copy p {
                max-width: 300px;
                font-size: 15px;
            }

            .contact-city-copy {
                display: none;
            }

            .contact-form { padding: 0; }
            .contact-form-fields { padding: 16px; }
        }

        /* Tipografía editorial compartida con Ogappy. Los controles retro
           mantienen sus reglas específicas en Press Start 2P. */
        .hero h1,
        .hero-copy,
        .intro-content h2,
        .intro-content p,
        .problem-content h2,
        .problem-stat p,
        .strip h3,
        .strip p {
            font-family: "Plus Jakarta Sans", system-ui, sans-serif;
        }
