        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --naranja: #E8380D;
            --naranja-light: #FF5A30;
            --naranja-bg: rgba(232, 56, 13, 0.07);
            --naranja-border: rgba(232, 56, 13, 0.2);
            --negro: #111111;
            --texto: #2C2C2C;
            --gris: #6B7280;
            --gris-light: #F5F5F5;
            --borde: #E5E7EB;
            --blanco: #FFFFFF;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.10);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.14);
            --shadow-naranja: 0 8px 32px rgba(232, 56, 13, 0.22);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--blanco);
            color: var(--texto);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Botón WhatsApp en panel éxito */
        .btn-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #25D366;
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 16px;
            transition: background 0.2s, transform 0.1s;
        }

        .btn-whatsapp:hover {
            background: #1DA851;
            transform: translateY(-1px);
        }

        .btn-whatsapp i {
            font-size: 1.2rem;
        }

        /* Mensaje de límite alcanzado - banner profesional */
        .limit-banner {
            animation: fadeIn 0.5s ease;
            max-width: 100%;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(5px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ============ NAV ============ */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--borde);
            padding: 0 5vw;
            height: 68px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-brand img {
            height: 38px;
            object-fit: contain;
        }

        .nav-by {
            font-size: 0.7rem;
            font-weight: 500;
            color: var(--gris);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .nav-by img {
            height: 22px;
            opacity: 0.7;
        }

        .nav-cta {
            background: var(--naranja);
            color: #fff;
            border: none;
            padding: 10px 22px;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .nav-cta:hover {
            background: var(--naranja-light);
            transform: translateY(-1px);
            box-shadow: var(--shadow-naranja);
        }

        /* ============ HERO ============ */
        .hero {
            padding-top: 68px;
            min-height: 100vh;
            background: #fff;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-bg-shape {
            position: absolute;
            top: -100px;
            right: -100px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(232, 56, 13, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-bg-dots {
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(circle, rgba(232, 56, 13, 0.08) 1px, transparent 1px);
            background-size: 32px 32px;
            pointer-events: none;
            opacity: 0.5;
        }

        .hero-left {
            padding: 5rem 3rem 5rem 7vw;
            position: relative;
            z-index: 2;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--naranja-bg);
            border: 1px solid var(--naranja-border);
            color: var(--naranja);
            padding: 6px 14px;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            animation: fadeUp 0.5s ease both;
        }

        .pulse-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--naranja);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1)
            }

            50% {
                opacity: 0.4;
                transform: scale(1.5)
            }
        }

        .hero-h1 {
            font-size: clamp(2.4rem, 4.5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            color: var(--negro);
            margin-bottom: 1.2rem;
            animation: fadeUp 0.5s 0.1s ease both;
        }

        .hero-h1 .naranja {
            color: var(--naranja);
        }

        .hero-sub {
            font-size: 1rem;
            font-weight: 400;
            color: var(--gris);
            max-width: 460px;
            margin-bottom: 2rem;
            line-height: 1.7;
            animation: fadeUp 0.5s 0.15s ease both;
        }

        /* COUNTER BLOCK */
        .counter-block {
            background: #fff;
            border: 1.5px solid var(--borde);
            border-radius: 16px;
            padding: 1.4rem 1.8rem;
            margin-bottom: 2rem;
            display: inline-block;
            animation: fadeUp 0.5s 0.2s ease both;
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
        }

        .counter-block::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--naranja), var(--naranja-light));
        }

        .counter-label {
            font-size: 0.72rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--gris);
            margin-bottom: 0.5rem;
        }

        .counter-slots {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .slot-bar {
            display: flex;
            gap: 5px;
        }

        .slot {
            width: 22px;
            height: 10px;
            border-radius: 3px;
            background: var(--borde);
            transition: background 0.4s;
        }

        .slot.taken {
            background: var(--naranja);
        }

        .counter-text {
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--texto);
        }

        .counter-text strong {
            color: var(--naranja);
        }

        .hero-btns {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            animation: fadeUp 0.5s 0.25s ease both;
        }

        .btn-primary {
            background: var(--naranja);
            color: #fff;
            border: none;
            padding: 14px 28px;
            border-radius: 10px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.92rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .btn-primary:hover {
            background: var(--naranja-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-naranja);
        }

        .btn-outline {
            background: transparent;
            color: var(--texto);
            border: 1.5px solid var(--borde);
            padding: 14px 24px;
            border-radius: 10px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.92rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .btn-outline:hover {
            border-color: var(--naranja);
            color: var(--naranja);
        }

        .hero-right {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 3rem 7vw 3rem 2rem;
            position: relative;
            z-index: 2;
        }

        .hero-visual {
            position: relative;
            animation: float 5s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-14px)
            }
        }

        .hero-visual-img {
            width: clamp(260px, 28vw, 360px);
        }

        .hero-badge {
            position: absolute;
            bottom: -16px;
            right: -20px;
            background: #fff;
            border: 1px solid var(--borde);
            border-radius: 12px;
            padding: 10px 16px;
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--texto);
            white-space: nowrap;
        }

        .hero-badge i {
            color: var(--naranja);
            font-size: 1.2rem;
        }

        /* ============ LOGOS BAR ============ */
        .logos-bar {
            background: var(--gris-light);
            border-top: 1px solid var(--borde);
            border-bottom: 1px solid var(--borde);
            padding: 2.5rem 7vw;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .logos-bar span {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--gris);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .powered-by {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            text-align: center;
        }

        .powered-by img {
            height: 110px;
            object-fit: contain;
            transition: transform 0.3s;
        }

        .powered-by img:hover {
            transform: scale(1.05);
        }

        .powered-by .slogan {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--texto);
            opacity: 0.8;
        }

        /* ============ WHAT WE OFFER ============ */
        .section {
            padding: 5.5rem 7vw;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--naranja-bg);
            color: var(--naranja);
            padding: 5px 14px;
            border-radius: 100px;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-h2 {
            font-size: clamp(1.7rem, 3vw, 2.5rem);
            font-weight: 800;
            color: var(--negro);
            line-height: 1.2;
            margin-bottom: 0.8rem;
        }

        .section-h2 .naranja {
            color: var(--naranja);
        }

        .section-sub {
            font-size: 0.95rem;
            color: var(--gris);
            max-width: 540px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 1.5rem;
        }

        .feature-card {
            background: #fff;
            border: 1px solid var(--borde);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .feature-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--naranja-bg) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--naranja-border);
        }

        .feature-card:hover::after {
            opacity: 1;
        }

        .fc-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: var(--naranja-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.2rem;
            position: relative;
            z-index: 1;
        }

        .fc-icon i {
            font-size: 1.5rem;
            color: var(--naranja);
        }

        .feature-card h3 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 1;
        }

        .feature-card p {
            font-size: 0.85rem;
            color: var(--gris);
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        /* ============ HOW IT WORKS ============ */
        .how-section {
            background: var(--gris-light);
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0;
            position: relative;
        }

        .steps-grid::before {
            content: '';
            position: absolute;
            top: 32px;
            left: 15%;
            right: 15%;
            height: 2px;
            background: linear-gradient(90deg, var(--naranja), var(--naranja-light));
            z-index: 0;
        }

        .step-item {
            text-align: center;
            padding: 0 1.5rem;
            position: relative;
            z-index: 1;
        }

        .step-num {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: #fff;
            border: 2px solid var(--naranja);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.2rem;
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--naranja);
            box-shadow: var(--shadow-naranja);
        }

        .step-num.filled {
            background: var(--naranja);
            color: #fff;
        }

        .step-item h3 {
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
        }

        .step-item p {
            font-size: 0.82rem;
            color: var(--gris);
            line-height: 1.5;
        }

        /* ============ MARKET STUDY SECTION ============ */
        .market-section {
            background: var(--negro);
            padding: 5rem 7vw;
            position: relative;
            overflow: hidden;
        }

        .market-section::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -120px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(232, 56, 13, 0.18) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .market-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .market-left .section-tag {
            background: rgba(232, 56, 13, 0.15);
        }

        .market-left .section-h2 {
            color: #fff;
            text-align: left;
        }

        .market-left .section-sub {
            color: rgba(255, 255, 255, 0.6);
            text-align: left;
            margin: 0 0 2rem;
        }

        .market-points {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .market-point {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 1rem 1.2rem;
        }

        .market-point i {
            font-size: 1.3rem;
            color: var(--naranja);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .market-point-text h4 {
            font-size: 0.9rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 2px;
        }

        .market-point-text p {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .market-right {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .market-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            width: 100%;
            max-width: 380px;
        }

        .market-card-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.4rem;
        }

        .market-card-sub {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 2rem;
        }

        .market-list {
            display: flex;
            flex-direction: column;
            gap: 0.9rem;
        }

        .market-list-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.75);
        }

        .market-list-item i {
            color: var(--naranja);
            font-size: 1rem;
        }

        /* ============ PRICING TEASER ============ */
        .pricing-section {
            padding: 5rem 7vw;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .pricing-card {
            border: 1.5px solid var(--borde);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s;
            position: relative;
        }

        .pricing-card.featured {
            border-color: var(--naranja);
            box-shadow: var(--shadow-naranja);
        }

        .pricing-card.featured::before {
            content: 'MÁS POPULAR';
            position: absolute;
            top: -13px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--naranja);
            color: #fff;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            padding: 4px 14px;
            border-radius: 100px;
        }

        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .pricing-tier {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--gris);
            text-transform: uppercase;
            letter-spacing: 0.07em;
            margin-bottom: 0.8rem;
        }

        .pricing-price {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--negro);
            margin-bottom: 0.3rem;
        }

        .pricing-price span {
            font-size: 1rem;
            font-weight: 500;
            color: var(--gris);
        }

        .pricing-note {
            font-size: 0.78rem;
            color: var(--gris);
            margin-bottom: 1.5rem;
        }

        .pricing-feat {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            text-align: left;
            margin-bottom: 1.5rem;
        }

        .pf-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.82rem;
            color: var(--texto);
        }

        .pf-item i {
            color: var(--naranja);
            font-size: 0.95rem;
        }

        .pricing-btn {
            width: 100%;
            padding: 12px;
            border-radius: 10px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.88rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            border: 1.5px solid var(--borde);
            background: transparent;
            color: var(--texto);
        }

        .pricing-card.featured .pricing-btn {
            background: var(--naranja);
            color: #fff;
            border-color: var(--naranja);
        }

        .pricing-card.featured .pricing-btn:hover {
            background: var(--naranja-light);
        }

        /* ============ MODAL ============ */
        .modal-overlay {
            position: fixed;
            inset: 0;
            z-index: 200;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(6px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }

        .modal-overlay.open {
            opacity: 1;
            pointer-events: all;
        }

        .modal {
            background: #fff;
            border-radius: 24px;
            width: 100%;
            max-width: 620px;
            max-height: 90vh;
            position: relative;
            transform: translateY(24px) scale(0.97);
            transition: transform 0.35s cubic-bezier(.22, .68, 0, 1.2);
            box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .modal-overlay.open .modal {
            transform: translateY(0) scale(1);
        }

        .modal-header {
            padding: 2rem 2rem 0;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 1rem;
        }

        .modal-close {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid var(--borde);
            background: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.2s;
        }

        .modal-close:hover {
            background: var(--naranja);
            border-color: var(--naranja);
            color: #fff;
        }

        .modal-close i {
            font-size: 1.1rem;
        }

        .modal-title {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--negro);
        }

        .modal-sub {
            font-size: 0.82rem;
            color: var(--gris);
            margin-top: 3px;
        }

        /* STEPPER */
        .stepper {
            padding: 1.5rem 2rem;
            display: flex;
            align-items: center;
            gap: 0;
        }

        .step-pill {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--gris);
            transition: color 0.3s;
        }

        .step-pill.active {
            color: var(--naranja);
        }

        .step-pill.done {
            color: #22C55E;
        }

        .step-circle {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 2px solid var(--borde);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            background: #fff;
            transition: all 0.3s;
        }

        .step-pill.active .step-circle {
            border-color: var(--naranja);
            background: var(--naranja);
            color: #fff;
        }

        .step-pill.done .step-circle {
            border-color: #22C55E;
            background: #22C55E;
            color: #fff;
        }

        .step-connector {
            flex: 1;
            height: 2px;
            background: var(--borde);
            margin: 0 4px;
            transition: background 0.3s;
        }

        .step-connector.done {
            background: #22C55E;
        }

        .step-name {
            display: none;
        }

        .modal-body {
            padding: 0 2rem 2rem;
            flex: 1 1 auto;
            overflow: auto;
        }

        .step-panel {
            display: none;
        }

        .step-panel.active {
            display: block;
        }

        /* FIELDS */
        .field-group {
            margin-bottom: 1.2rem;
        }

        .field-group label {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--texto);
            margin-bottom: 6px;
        }

        .req {
            color: var(--naranja);
        }

        .field-group input,
        .field-group select,
        .field-group textarea {
            width: 100%;
            font-family: 'Poppins', sans-serif;
            font-size: 0.88rem;
            padding: 11px 14px;
            border: 1.5px solid var(--borde);
            border-radius: 10px;
            background: var(--gris-light);
            color: var(--texto);
            transition: all 0.2s;
            outline: none;
        }

        .field-group input:focus,
        .field-group select:focus,
        .field-group textarea:focus {
            border-color: var(--naranja);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(232, 56, 13, 0.1);
        }

        .field-group textarea {
            resize: vertical;
            min-height: 80px;
        }

        .input-icon-wrap {
            position: relative;
        }

        .input-icon-wrap i {
            position: absolute;
            left: 13px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gris);
            font-size: 1rem;
        }

        .input-icon-wrap input {
            padding-left: 38px;
        }

        .field-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .field-error-msg {
            font-size: 0.73rem;
            color: var(--naranja);
            margin-top: 4px;
            display: none;
        }

        .field-group.err input,
        .field-group.err select {
            border-color: var(--naranja);
        }

        .field-group.err .field-error-msg {
            display: block;
        }

        /* CHIP OPTIONS */
        .chip-group {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 6px;
        }

        .chip {
            position: relative;
        }

        .chip input[type="radio"],
        .chip input[type="checkbox"] {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        }

        .chip label {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            border: 1.5px solid var(--borde);
            border-radius: 100px;
            cursor: pointer;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--gris);
            background: var(--gris-light);
            transition: all 0.18s;
            white-space: nowrap;
        }

        .chip input:checked+label {
            border-color: var(--naranja);
            background: var(--naranja-bg);
            color: var(--naranja);
            font-weight: 600;
        }

        .chip label i {
            font-size: 0.95rem;
        }

        /* RANGE SLIDER */
        .range-wrap {
            padding: 0.5rem 0;
        }

        .range-labels {
            display: flex;
            justify-content: space-between;
            font-size: 0.75rem;
            color: var(--gris);
            margin-bottom: 6px;
        }

        .range-val {
            font-size: 1rem;
            font-weight: 700;
            color: var(--naranja);
            text-align: center;
            margin-bottom: 8px;
        }

        input[type="range"] {
            width: 100%;
            accent-color: var(--naranja);
            cursor: pointer;
            height: 6px;
        }

        /* MODAL FOOTER */
        .modal-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 2rem;
            border-top: 1px solid var(--borde);
            gap: 1rem;
        }

        .btn-back {
            background: transparent;
            border: 1.5px solid var(--borde);
            padding: 10px 20px;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--gris);
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .btn-back:hover {
            border-color: var(--naranja);
            color: var(--naranja);
        }

        .btn-next {
            background: var(--naranja);
            color: #fff;
            border: none;
            padding: 10px 18px;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.88rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 7px;
            margin-left: auto;
        }

        /* compact variant for mobile-like footer */
        .modal-footer .btn-back,
        .modal-footer .btn-next {
            min-width: 120px;
            justify-content: center;
        }

        .btn-next:hover {
            background: var(--naranja-light);
            box-shadow: var(--shadow-naranja);
        }

        .btn-next:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .step-counter {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--gris);
        }

        /* SUCCESS PANEL */
        .success-panel {
            padding: 3rem 2rem;
            text-align: center;
        }

        .success-icon-wrap {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--naranja), var(--naranja-light));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            animation: bounceIn 0.5s ease;
        }

        .success-icon-wrap i {
            font-size: 2rem;
            color: #fff;
        }

        @keyframes bounceIn {
            0% {
                transform: scale(0)
            }

            60% {
                transform: scale(1.2)
            }

            100% {
                transform: scale(1)
            }
        }

        .success-panel h3 {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--negro);
            margin-bottom: 0.6rem;
        }

        .success-panel p {
            font-size: 0.88rem;
            color: var(--gris);
            line-height: 1.6;
            max-width: 380px;
            margin: 0 auto 1.5rem;
        }

        .success-id {
            font-size: 0.75rem;
            color: var(--gris);
            background: var(--gris-light);
            border-radius: 8px;
            padding: 8px 14px;
            display: inline-block;
            margin-top: 0.5rem;
        }

        /* ============ FOOTER ============ */
        footer {
            background: var(--negro);
            padding: 3rem 7vw;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-brand img {
            height: 36px;
            filter: brightness(0) invert(1);
            opacity: 0.85;
        }

        .footer-text {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
            margin-top: 4px;
        }

        .footer-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 8px;
        }

        .footer-right img {
            height: 24px;
            filter: brightness(0) invert(1);
            opacity: 0.4;
        }

        .footer-right span {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.3);
        }

        /* TOAST */
        .toast {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            background: var(--negro);
            color: #fff;
            padding: 12px 20px;
            border-radius: 12px;
            font-size: 0.85rem;
            font-weight: 500;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 10px;
            transform: translateY(80px);
            opacity: 0;
            transition: all 0.35s;
            z-index: 300;
            max-width: 340px;
        }

        .counter-info {
            margin-top: 10px;
            font-size: 0.88rem;
            color: var(--gris);
        }

        .counter-status {
            margin-top: 8px;
            font-size: 0.95rem;
            font-weight: 700;
            color: #111;
        }

        .counter-status.urgent {
            color: #b91c1c;
        }

        .step-progress {
            height: 8px;
            background: var(--gris-light);
            border-radius: 999px;
            overflow: hidden;
            margin: 12px 2rem 0;
        }

        .step-progress-fill {
            width: 0%;
            height: 100%;
            background: linear-gradient(90deg, var(--naranja), var(--naranja-light));
            transition: width 0.3s ease;
        }

        .toast.show {
            transform: translateY(0);
            opacity: 1;
        }

        .toast.err {
            background: #DC2626;
        }

        .toast i {
            font-size: 1.1rem;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(18px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        /* RESPONSIVE */
        @media(max-width:900px) {
            .hero {
                grid-template-columns: 1fr;
            }

            .hero-right {
                display: none;
            }

            .hero-left {
                padding: 4rem 6vw;
            }

            .market-inner {
                grid-template-columns: 1fr;
            }

            .market-right {
                display: none;
            }

            .steps-grid::before {
                display: none;
            }

            .field-row {
                grid-template-columns: 1fr;
            }

            .step-name {
                display: none;
            }
        }

        @media(max-width:600px) {
            .modal {
                border-radius: 16px;
            }

            .pricing-cards {
                grid-template-columns: 1fr;
            }

            .modal-footer {
                flex-wrap: wrap;
            }

            .step-counter {
                order: -1;
                width: 100%;
                text-align: center;
            }
        }
        /* ============================================================
   PARCHE RESPONSIVO — agregar al FINAL de style.css
   Corrige: Hero en móvil + Footer del modal desalineado
   ============================================================ */

/* ── HERO MOBILE ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero-left {
        padding: 3rem 6vw 2.5rem;
    }
}

@media (max-width: 600px) {
    .hero {
        padding-bottom: 3rem;
    }

    .hero-left {
        padding: 2.5rem 5vw 2rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-h1 {
        font-size: clamp(2rem, 9vw, 2.6rem);
        line-height: 1.15;
    }

    .hero-sub {
        font-size: 0.88rem;
        max-width: 100%;
        text-align: center;
    }

    .counter-block {
        width: 100%;
        padding: 1.1rem 1.2rem;
    }

    .counter-slots {
        flex-wrap: wrap;
        gap: 8px;
    }

    .slot {
        width: 18px;
        height: 9px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    /* Ocultar hero-right solo por si acaba mostrándose */
    .hero-right {
        display: none !important;
    }
}

/* ── MODAL FOOTER BOTONES ────────────────────────────────── */

/* Regla base: nunca usar visibility:hidden — oculta el botón
   pero deja su espacio. Usamos opacity+pointer-events mejor. */
.btn-back[style*="visibility:hidden"],
.btn-back[style*="visibility: hidden"] {
    opacity: 0;
    pointer-events: none;
    /* Mantiene el espacio en desktop para centrar el counter */
}

@media (max-width: 600px) {
    .modal-footer {
        display: grid;
        grid-template-areas:
            "counter counter"
            "back    next";
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        padding: 1rem 1.25rem;
        align-items: center;
    }

    .step-counter {
        grid-area: counter;
        text-align: center;
        order: unset; /* resetear el order anterior */
        width: auto;
    }

    .btn-back {
        grid-area: back;
        width: 100%;
        justify-content: center;
    }

    /* Cuando el botón Atrás está oculto (step 1),
       el botón Siguiente ocupa las dos columnas */
    .btn-back[style*="visibility:hidden"],
    .btn-back[style*="visibility: hidden"] {
        grid-area: back;
        visibility: hidden; /* respeta layout grid */
    }

    .btn-next {
        grid-area: next;
        width: 100%;
        justify-content: center;
        margin-left: 0; /* quitar el margin-left:auto del desktop */
    }

    /* make next button visually smaller and elevated */
    .btn-next {
        padding: 10px 14px;
        font-size: 0.9rem;
        border-radius: 12px;
        box-shadow: 0 6px 18px rgba(232,56,13,0.18);
    }

    /* Caso especial: step 1, Atrás invisible → Next a full width */
    .modal-footer:has(.btn-back[style*="visibility:hidden"]) .btn-next,
    .modal-footer:has(.btn-back[style*="visibility: hidden"]) .btn-next {
        grid-column: 1 / -1;
    }
}

/* ── MODAL GENERAL MOBILE ────────────────────────────────── */
@media (max-width: 480px) {
    .modal {
        border-radius: 20px 20px 0 0;
        max-height: 95vh;
        margin-top: auto; /* sube desde abajo como sheet */
    }

    .modal-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .modal-overlay.open .modal {
        transform: translateY(0) scale(1);
    }

    .modal-header {
        padding: 1.5rem 1.25rem 0;
    }

    .modal-body {
        padding: 0 1.25rem 1.5rem;
    }

    .stepper {
        padding: 1rem 1.25rem;
    }

    .step-name {
        display: none !important;
    }

    .field-row {
        grid-template-columns: 1fr !important;
    }

    .chip label {
        font-size: 0.78rem;
        padding: 7px 11px;
    }

    .modal-title {
        font-size: 1.1rem;
    }
    /* Mantener el footer visible y permitir scroll del body bajo él */
    .modal-footer {
        position: sticky;
        bottom: 0;
        background: #fff;
        z-index: 30;
        padding-top: 0.75rem;
        padding-bottom: 0.9rem;
    }
    .modal-body { padding-bottom: 3.6rem; } /* espacio para footer */
}

.btn-ticket {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--naranja); color: #fff;
    padding: 12px 28px; border-radius: 12px; border: none;
    font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 700;
    cursor: pointer; box-shadow: var(--shadow-naranja); transition: all 0.2s;
}
.btn-ticket:hover { background: var(--naranja-light); transform: translateY(-1px); }

.btn-whatsapp {
    display: inline-flex; align-items: center; gap: 8px;
    background: #25D366; color: #fff; padding: 11px 24px;
    border-radius: 12px; text-decoration: none;
    font-weight: 600; font-size: 0.88rem; transition: all 0.2s;
}
.btn-whatsapp:hover { background: #1DA851; transform: translateY(-1px); }
/* ============================================================
   MODAL V2 — Mobile-first sheet + footer fijo
   ============================================================ */

/* Drag handle (solo móvil) */
.drag-handle {
    width: 40px; height: 4px;
    background: var(--borde); border-radius: 999px;
    margin: 12px auto 0; flex-shrink: 0;
}
@media(min-width: 600px) { .drag-handle { display: none; } }

/* Header refactored */
.modal-header-left { flex: 1; }

/* Progress bar */
.progress-wrap { padding: 14px 2rem 0; flex-shrink: 0; }
.progress-track {
    height: 4px; background: var(--borde);
    border-radius: 999px; overflow: hidden; position: relative;
}
.progress-fill {
    position: absolute; left: 0; top: 0; height: 100%; width: 25%;
    background: linear-gradient(90deg, var(--naranja), var(--naranja-light));
    border-radius: 999px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modal: sheet desde abajo en móvil */
.modal-overlay {
    align-items: flex-end;
    padding: 0;
}
.modal {
    border-radius: 24px 24px 0 0;
    height: calc(100vh - 60px);
    max-height: 760px;
    transform: translateY(100%);
    transition: transform 0.42s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    flex-direction: column;
}
.modal-overlay.open .modal {
    transform: translateY(0);
}

/* En desktop vuelve a ser modal centrado */
@media(min-width: 600px) {
    .modal-overlay { align-items: center; padding: 1rem; }
    .modal {
        border-radius: 24px;
        height: auto;
        max-height: 88vh;
        transform: translateY(24px) scale(0.97);
    }
    .modal-overlay.open .modal {
        transform: translateY(0) scale(1);
    }
}

/* Body scrollable */
.modal-body {
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

/* ── FOOTER FIJO — siempre visible ── */
.modal-footer {
    flex-shrink: 0;
    padding: 12px 2rem;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
    border-top: 1.5px solid var(--borde);
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
        "counter counter"
        "back    next";
    gap: 10px;
    align-items: center;
}
.step-counter {
    grid-area: counter;
    text-align: center;
    order: unset;
    width: auto;
}
.btn-back {
    grid-area: back;
    width: 100%;
    justify-content: center;
    min-height: 46px;
}
.btn-next {
    grid-area: next;
    width: 100%;
    justify-content: center;
    margin-left: 0;
    min-height: 46px;
    box-shadow: 0 4px 16px rgba(232, 56, 13, 0.28);
}

/* Step 1: Anterior invisible, Siguiente a full width */
.modal-footer.step-1 .btn-back {
    opacity: 0;
    pointer-events: none;
}
.modal-footer.step-1 .btn-next {
    grid-column: 1 / -1;
}

/* Desktop: fila única */
@media(min-width: 500px) {
    .modal-footer {
        grid-template-areas: "back counter next";
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto;
    }
    .btn-back { width: auto; min-width: 120px; }
    .btn-next { width: auto; min-width: 120px; margin-left: 0; }
    .modal-footer.step-1 .btn-next { grid-column: auto; }
    .modal-footer.step-1 .btn-back { visibility: hidden; opacity: 1; pointer-events: none; }
}

/* Stepper — mover fuera del header */
.stepper { padding: 10px 2rem 0; }

/* Footer sticky en móvil pequeño */
@media(max-width: 480px) {
    .modal-footer {
        position: sticky;
        bottom: 0;
        z-index: 30;
    }
    .modal-body { padding-bottom: 0; }
}