        /* ========== CSS EXCLUSIVO - SÓ AFETA PÁGINA COM SHORTCODE ========== */
        :root.presell-page-active,
        body.presell-page-active {
            overscroll-behavior: contain;
        }

        body.presell-page-active {
            overflow: hidden !important;
            height: 100vh !important;
            height: 100dvh !important;
            margin: 0 !important;
            padding: 0 !important;
            background: #0a0a0a !important;
        }


        /* ========== RESET & FULL PAGE DARK ========== */
        .pw-page-wrapper * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .pw-page-wrapper {
            --pw-bottom-clearance: 88px;
            position: fixed;
            inset: 0;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
            font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: var(--pw-header-offset) 18px var(--pw-bottom-clearance);
            padding-top: calc(var(--pw-header-offset) + env(safe-area-inset-top));
            padding-bottom: calc(var(--pw-bottom-clearance) + env(safe-area-inset-bottom));
            overflow-y: auto;
            overflow-x: hidden;
            -webkit-overflow-scrolling: touch;
            overscroll-behavior: contain;
            min-height: 100vh;
            max-height: 100vh;
            max-height: 100dvh;
            height: 100vh;
            isolation: isolate;
            z-index: 99999;
        }



        /* ========== BACKGROUND SIMPLES ========== */
        .pw-page-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at 50% 0%, rgba(255, 140, 61, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }


        /* ========== FORM CONTAINER ========== */
        .pw-form-container {
            width: 100%;
            max-width: 520px;
            background: rgba(26, 26, 26, 0.92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-radius: 24px;
            border: 1px solid rgba(255, 140, 61, 0.15);
            box-shadow: 0 0 45px rgba(255, 140, 61, 0.08),
                0 18px 36px rgba(0, 0, 0, 0.45),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
            padding: 28px 28px 32px;
            position: relative;
            z-index: 1;
            animation: pw-fadeIn 0.6s ease-out;
        }


        @keyframes pw-fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ========== NEON GLOW TOP BAR ========== */
        .pw-form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--pw-color-accent), var(--pw-color-accent), transparent);
            border-radius: 0 0 4px 4px;
            box-shadow: 0 0 20px var(--pw-color-accent-99),
                0 0 40px var(--pw-color-accent-66);
        }


        /* ========== ICON ========== */
        .pw-icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 16px;
            background: linear-gradient(135deg, var(--pw-color-icon), var(--pw-color-icon-cc));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 30px var(--pw-color-icon-80),
                0 10px 30px rgba(0, 0, 0, 0.3);
            animation: pw-iconPulse 2s ease-in-out infinite;
        }


        .pw-icon svg {
            width: 28px;
            height: 28px;
            fill: #ffffff;
        }


        @keyframes pw-iconPulse {

            0%,
            100% {
                box-shadow: 0 0 30px rgba(37, 211, 102, 0.5), 0 10px 30px rgba(0, 0, 0, 0.3);
            }

            50% {
                box-shadow: 0 0 50px rgba(37, 211, 102, 0.7), 0 10px 40px rgba(0, 0, 0, 0.4);
            }
        }


        /* ========== TYPOGRAPHY ========== */
        .pw-form-title {
            text-align: center;
            color: #ffffff;
            font-size: clamp(1.5rem, 5vw, 2rem);
            font-weight: 800;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
            text-shadow: 0 0 30px rgba(255, 140, 61, 0.3);
        }

        .pw-form-subtitle {
            text-align: center;
            color: #888888;
            font-size: clamp(0.85rem, 3vw, 0.95rem);
            margin-bottom: 24px;
            font-weight: 400;
        }


        .pw-form-subtitle span {
            color: #ff8c3d;
            font-weight: 600;
        }

        /* ========== FORM FIELDS ========== */
        .pw-field {
            margin-bottom: 18px;
            position: relative;
        }


        .pw-label {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #e0e0e0;

            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pw-label-icon {
            font-size: 1.1rem;
        }

        .pw-label-svg {
            width: 18px;
            height: 18px;
            fill: var(--pw-color-icon);
            flex-shrink: 0;
        }



        .pw-input {
            width: 100% !important;
            padding: 18px 20px !important;
            background: rgba(30, 30, 30, 0.8) !important;
            background-color: rgba(30, 30, 30, 0.8) !important;
            border: 2px solid rgba(255, 140, 61, 0.2) !important;
            border-radius: 14px !important;
            color: #ffffff !important;
            font-size: 17px !important;
            font-weight: 500 !important;
            outline: none !important;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
            box-sizing: border-box !important;
            -webkit-appearance: none !important;
            -moz-appearance: none !important;
            appearance: none !important;
        }

        .pw-input::placeholder {
            color: #666666 !important;
            font-weight: 400 !important;
        }

        .pw-input:focus {
            border-color: #ff8c3d !important;
            background: rgba(40, 40, 40, 0.9) !important;
            box-shadow: 0 0 0 4px rgba(255, 140, 61, 0.15),
                0 0 30px rgba(255, 140, 61, 0.2),
                inset 0 0 20px rgba(255, 140, 61, 0.05) !important;
            transform: translateY(-2px);
        }

        .pw-input.pw-filled,
        .pw-date-btn.pw-filled,
        .pw-passenger-btn.pw-filled {
            border-color: #22c55e !important;
            box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15),
                0 0 20px rgba(34, 197, 94, 0.15) !important;
        }

        .pw-input.pw-filled+.pw-check {
            opacity: 1;
            transform: scale(1);
        }

        .pw-check {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: scale(0.5);
            opacity: 0;
            color: #22c55e;
            font-size: 20px;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        /* ========== EMAIL SUGGESTIONS ========== */
        .pw-email-wrapper {
            position: relative;
        }

        .pw-email-suggestions {
            position: absolute;
            top: calc(100% + 6px);
            left: 0;
            right: 0;
            background: rgba(30, 30, 30, 0.98);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 140, 61, 0.3);
            border-radius: 12px;
            overflow: hidden;
            z-index: 100;
            display: none;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        .pw-email-suggestions.active {
            display: block;
        }

        .pw-email-suggestion {
            padding: 14px 18px;
            color: #ffffff;
            cursor: pointer;
            transition: all 0.2s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .pw-email-suggestion:last-child {
            border-bottom: none;
        }

        .pw-email-suggestion:hover {
            background: linear-gradient(90deg, rgba(255, 140, 61, 0.2), rgba(255, 107, 26, 0.1));
            padding-left: 24px;
        }

        /* ========== SUBMIT BUTTON - FLOATING ========== */
        .pw-submit-wrapper {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
            background: linear-gradient(to top, rgba(10, 10, 10, 0.98) 65%, transparent);
            z-index: 100000;
        }

        .pw-submit {
            width: 100%;
            max-width: 440px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 18px 28px;
            background: linear-gradient(135deg, var(--pw-color-button) 0%, var(--pw-color-button-cc) 100%);
            border: none;
            border-radius: 50px;
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 30px var(--pw-color-button-66),
                0 4px 18px rgba(0, 0, 0, 0.35);
        }


        .pw-submit svg {
            width: 24px;
            height: 24px;
            fill: #ffffff;
            flex-shrink: 0;
        }

        .pw-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .pw-submit:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 40px var(--pw-color-button-80),
                0 0 60px var(--pw-color-button-4d);
        }


        .pw-submit:hover::before {
            left: 100%;
        }

        .pw-submit:active {
            transform: translateY(-1px) scale(0.99);
        }

        .pw-submit:disabled,
        .pw-submit.pw-sending {
            opacity: 0.75;
            cursor: not-allowed;
            box-shadow: none;
        }


        /* ========== SECURITY BADGE ========== */
        .pw-security {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 24px;
            color: #666666;
            font-size: 0.8rem;
        }

        .pw-security-icon {
            color: #22c55e;
        }

        /* ========== MOBILE RESPONSIVE ========== */
        @media (max-width: 600px) {
            .pw-page-wrapper {
                padding: 12px 10px var(--pw-bottom-clearance);
                padding-top: calc(12px + env(safe-area-inset-top));
                padding-bottom: calc(var(--pw-bottom-clearance) + env(safe-area-inset-bottom));
            }

            .pw-form-container {
                max-width: 100%;
                border-radius: 12px;
                min-height: auto;
                padding: 20px 18px 28px;
                border: 1px solid rgba(255, 140, 61, 0.12);
            }

            .pw-form-container::before {
                display: none;
            }


            .pw-icon {
                width: 60px;
                height: 60px;
                font-size: 28px;
            }

            .pw-input {
                padding: 16px 18px !important;
                font-size: 16px !important;
            }

            .pw-submit {
                padding: 18px 20px;
                font-size: 1.05rem;
            }
        }

        /* ========== QUOTATION SELECTOR BUTTON ========== */
        .pw-quotation-btn {
            cursor: pointer;
            text-align: left;
            color: #888 !important;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .pw-quotation-btn::after {
            content: '▼';
            font-size: 12px;
            color: var(--pw-color-accent);
        }

        .pw-quotation-btn.pw-selected {
            color: #fff !important;
            border-color: var(--pw-color-accent) !important;
        }

        /* ========== CHECKBOX STYLE ========== */
        .pw-quote-checkbox-label {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            color: #b0b0b0;
            font-size: 0.9rem;
            padding: 8px 0;
        }

        .pw-quote-checkbox {
            width: 20px;
            height: 20px;
            accent-color: var(--pw-color-accent);
            cursor: pointer;
        }

        .pw-quote-checkbox-label:hover {
            color: #fff;
        }

        /* ========== SEGUNDA ETAPA (PÁGINA) ========== */
        .pw-modal-overlay {
            position: relative;
            width: 100%;
            margin-top: 18px;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: 18px 18px calc(110px + env(safe-area-inset-bottom));
            overflow: visible;
            z-index: 1;
        }

        .pw-modal-overlay.active {
            display: flex;
        }

        .pw-page-wrapper[data-step="1"] #pw-form-container {
            display: block;
        }

        .pw-page-wrapper[data-step="1"] #pw-modal-overlay {
            display: none;
        }

        .pw-page-wrapper[data-step="2"] #pw-form-container,
        .pw-page-wrapper[data-step="3"] #pw-form-container {
            display: none;
        }

        .pw-page-wrapper[data-step="2"] #pw-modal-overlay,
        .pw-page-wrapper[data-step="3"] #pw-modal-overlay {
            display: flex;
        }

        .pw-step-2-chip,
        .pw-step-3-chip,
        .pw-step-2-title,
        .pw-step-3-title {
            display: none;
        }

        .pw-page-wrapper[data-step="2"] .pw-step-2-chip,
        .pw-page-wrapper[data-step="2"] .pw-step-2-title {
            display: inline-flex;
        }

        .pw-page-wrapper[data-step="2"] .pw-step-2-title {
            display: block;
        }

        .pw-page-wrapper[data-step="3"] .pw-step-3-chip,
        .pw-page-wrapper[data-step="3"] .pw-step-3-title {
            display: inline-flex;
        }

        .pw-page-wrapper[data-step="3"] .pw-step-3-title {
            display: block;
        }

        .pw-page-wrapper[data-step="2"] .pw-quote-types {
            display: grid;
            grid-template-columns: 1fr;
            grid-auto-rows: 1fr;
            gap: 14px;
            min-height: clamp(360px, 58vh, 560px);
            align-content: stretch;
            margin-bottom: 0;
        }

        .pw-page-wrapper[data-step="2"] .pw-quote-form {
            display: none !important;
        }

        .pw-page-wrapper[data-step="2"] .pw-quote-type {
            min-height: 0;
            height: 100%;
            padding: 22px 18px;
            font-size: 1rem;
            flex-direction: row;
            justify-content: flex-start;
            text-align: left;
            gap: 14px;
        }

        .pw-page-wrapper[data-step="2"] .pw-quote-type-icon {
            font-size: 1.6rem;
            line-height: 1;
        }

        .pw-page-wrapper[data-step="3"] .pw-quote-types {
            display: none;
        }

        .pw-page-wrapper[data-step="3"] .pw-quote-form {
            display: none;
        }

        .pw-page-wrapper[data-step="3"] .pw-quote-form.active {
            display: block;
        }

        /* ========== CONTAINER DA ETAPA ========= */
        .pw-modal {
            width: min(1100px, 100%);
            min-height: 0;
            background: rgba(20, 20, 20, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 18px;
            border: 1px solid rgba(255, 140, 61, 0.2);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55),
                0 0 30px rgba(255, 140, 61, 0.08);
            display: flex;
            flex-direction: column;
            overflow: visible;
            position: relative;
            isolation: isolate;
        }

        .pw-modal-header {
            padding: 14px 16px;
            border-bottom: 1px solid rgba(255, 140, 61, 0.18);
            display: flex;
            align-items: center;
            justify-content: flex-start;
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(180deg, rgba(24, 24, 24, 0.98) 0%, rgba(24, 24, 24, 0.92) 100%);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 10;
        }

        .pw-modal-title-wrap {
            display: none;
            /* Hide all title info as requested */
        }

        .pw-modal-title {
            display: none;
        }

        .pw-step-chip {
            display: none;
        }

        .pw-modal-close {
            min-width: auto;
            height: auto;
            border-radius: 6px;
            background: transparent;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: all 0.2s ease;
            padding: 8px 12px;
            font-weight: 500;
        }

        .pw-modal-close:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }

        .pw-modal-body {
            padding: 22px 24px 140px;
            flex: 1;
            overflow: visible;
        }

        /* ========== QUOTATION TYPE GRID ========== */
        .pw-quote-types {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 20px;
        }

        .pw-quote-type {
            padding: 16px 14px;
            background: rgba(30, 30, 30, 0.8);
            border: 1.5px solid rgba(255, 140, 61, 0.45);
            border-radius: 12px;
            color: #ccc;
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            text-align: center;
            transition: all 0.25s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 86px;
            gap: 8px;
            position: relative;
            overflow: hidden;
            will-change: transform, box-shadow;
            box-shadow: 0 0 0 1px rgba(255, 140, 61, 0.2) inset,
                0 0 18px rgba(255, 140, 61, 0.15),
                0 12px 22px rgba(0, 0, 0, 0.28);
            animation: pw-quote-neon-pulse 2.8s ease-in-out infinite,
                pw-quote-float 5.4s ease-in-out infinite;
        }

        .pw-quote-type-icon {
            font-size: 1.5rem;
        }

        .pw-quote-type::before {
            content: '';
            position: absolute;
            inset: -120% 35%;
            background: linear-gradient(180deg,
                    transparent 0%,
                    rgba(255, 140, 61, 0.28) 45%,
                    transparent 100%);
            transform: rotate(18deg) translateX(-140%);
            animation: pw-quote-sweep 3.8s linear infinite;
            pointer-events: none;
            z-index: 0;
        }

        .pw-quote-type>* {
            position: relative;
            z-index: 1;
        }

        .pw-quote-type:hover {
            border-color: rgba(255, 140, 61, 0.65);
            background: rgba(255, 140, 61, 0.11);
            transform: translateY(-2px) scale(1.01);
            box-shadow: 0 0 0 1px rgba(255, 140, 61, 0.38) inset,
                0 0 30px rgba(255, 140, 61, 0.25),
                0 16px 26px rgba(0, 0, 0, 0.32);
        }

        .pw-quote-type.active {
            border-color: var(--pw-color-accent);
            background: rgba(255, 140, 61, 0.15);
            color: #fff;
            transform: translateY(0);
            animation: none;
            box-shadow: 0 0 0 1px rgba(255, 140, 61, 0.5) inset,
                0 0 28px rgba(255, 140, 61, 0.26),
                0 14px 24px rgba(0, 0, 0, 0.3);
        }

        .pw-quote-type.active::before {
            opacity: 0.35;
            animation: none;
        }

        .pw-page-wrapper[data-step="2"] .pw-quote-type:nth-child(2) {
            animation-delay: 0.2s, 0.25s;
        }

        .pw-page-wrapper[data-step="2"] .pw-quote-type:nth-child(3) {
            animation-delay: 0.4s, 0.5s;
        }

        @keyframes pw-quote-neon-pulse {

            0%,
            100% {
                box-shadow: 0 0 0 1px rgba(255, 140, 61, 0.2) inset,
                    0 0 16px rgba(255, 140, 61, 0.12),
                    0 10px 20px rgba(0, 0, 0, 0.25);
            }

            50% {
                box-shadow: 0 0 0 1px rgba(255, 140, 61, 0.35) inset,
                    0 0 28px rgba(255, 140, 61, 0.24),
                    0 14px 24px rgba(0, 0, 0, 0.32);
            }
        }

        @keyframes pw-quote-float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-3px);
            }
        }

        @keyframes pw-quote-sweep {
            0% {
                transform: rotate(18deg) translateX(-140%);
            }

            100% {
                transform: rotate(18deg) translateX(140%);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .pw-quote-type,
            .pw-quote-type::before {
                animation: none !important;
            }
        }

        @media (max-width: 860px) {
            .pw-quote-types {
                grid-template-columns: 1fr !important;
                gap: 12px;
            }

            .pw-quote-type {
                width: 100% !important;
                min-height: 64px;
                padding: 16px 14px;
                font-size: 0.92rem;
                flex-direction: row;
                justify-content: flex-start;
                text-align: left;
                gap: 12px;
            }

            .pw-quote-type-icon {
                font-size: 1.25rem;
                line-height: 1;
            }
        }

        /* ========== CONDITIONAL FORMS ========== */
        .pw-quote-form {
            display: none;
            animation: pw-fadeSlide 0.3s ease-out;
        }

        .pw-quote-form.active {
            display: block;
        }

        @keyframes pw-fadeSlide {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .pw-quote-form-title {
            color: var(--pw-color-accent);
            font-size: 0.9rem;
            font-weight: 600;
            margin: 20px 0 16px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255, 140, 61, 0.2);
        }

        .pw-quote-field {
            margin-bottom: 16px;
        }

        .pw-quote-label {
            display: block;
            color: #b0b0b0;
            font-size: 0.8rem;
            font-weight: 500;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pw-quote-input,
        .pw-quote-select,
        .pw-quote-textarea {
            width: 100%;
            padding: 14px 16px;
            background: rgba(30, 30, 30, 0.9);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: #fff;
            font-size: 15px;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .pw-quote-input:focus,
        .pw-quote-select:focus,
        .pw-quote-textarea:focus {
            outline: none;
            border-color: var(--pw-color-accent);
            box-shadow: 0 0 0 3px rgba(255, 140, 61, 0.15);
        }

        .pw-quote-input.pw-filled,
        .pw-quote-select.pw-filled,
        .pw-quote-textarea.pw-filled {
            border-color: #22c55e !important;
            color: #fff !important;
            box-shadow: 0 0 0 1px #22c55e !important;
        }

        .pw-quote-input::placeholder,
        .pw-quote-textarea::placeholder {
            color: #555;
        }

        .pw-quote-select {
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ff8c3d' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            padding-right: 40px;
        }

        .pw-quote-select option {
            background: #1a1a1a;
            color: #fff;
            padding: 10px;
        }

        .pw-quote-textarea {
            min-height: 100px;
            resize: vertical;
        }

        .pw-quote-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        /* ========== RODAPÉ DA ETAPA ========= */
        .pw-floating-cta {
            position: fixed;
            left: 50%;
            transform: translateX(-50%);
            bottom: calc(18px + env(safe-area-inset-bottom));
            width: min(1100px, calc(100% - 32px));
            z-index: 300000;
            display: none;
            pointer-events: none;
        }

        .pw-floating-cta-inner {
            background: linear-gradient(180deg, rgba(16, 16, 16, 0.95) 0%, rgba(12, 12, 12, 0.95) 100%);
            border: none;
            border-radius: 999px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 24px rgba(0, 0, 0, 0.35);
            padding: 14px 16px;
            pointer-events: all;
        }

        .pw-modal-confirm {
            width: 100%;
            padding: 16px 24px;
            background: linear-gradient(135deg, #25D366, #1ea956);
            border: none;
            border-radius: 50px;
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pw-modal-confirm:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
        }

        .pw-modal-confirm:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* ========== PASSENGER SELECTOR ========== */
        .pw-passenger-btn {
            width: 100%;
            padding: 14px 16px;
            background: rgba(30, 30, 30, 0.9);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: #888;
            font-size: 16px;
            text-align: left;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
        }

        .pw-passenger-btn::after {
            content: '▼';
            font-size: 10px;
            color: var(--pw-color-accent);
        }

        .pw-passenger-btn.pw-filled {
            color: #fff;
            border-color: var(--pw-color-accent);
        }

        /* Popup centralizado */
        .pw-passenger-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 9998;
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
        }

        .pw-passenger-overlay.active {
            display: block;
        }

        .pw-passenger-popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 340px;
            max-height: 80vh;
            background: #1a1a1a;
            border: 2px solid var(--pw-color-accent);
            border-radius: 16px;
            padding: 20px;
            z-index: 9999;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
            overflow-y: auto;
        }

        .pw-passenger-popup.active {
            display: block;
            animation: pw-popupScale 0.25s ease-out;
        }

        @keyframes pw-popupScale {
            from {
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.9);
            }

            to {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1);
            }
        }

        .pw-passenger-popup-title {
            color: var(--pw-color-accent);
            font-size: 1rem;
            font-weight: 700;
            margin: 0 0 16px;
            text-align: center;
        }

        .pw-passenger-wrapper {
            position: relative;
        }

        .pw-passenger-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .pw-passenger-row:last-child {
            border-bottom: none;
        }

        .pw-passenger-label {
            color: #fff;
            font-size: 14px;
            font-weight: 500;
        }

        .pw-passenger-label small {
            display: block;
            color: #666;
            font-size: 11px;
            font-weight: 400;
            margin-top: 2px;
        }

        .pw-passenger-counter {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .pw-passenger-counter button {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 140, 61, 0.2);
            border: 1px solid var(--pw-color-accent);
            color: var(--pw-color-accent);
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .pw-passenger-counter button:hover {
            background: var(--pw-color-accent);
            color: #fff;
        }

        .pw-passenger-counter button:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .pw-passenger-counter span {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            min-width: 24px;
            text-align: center;
        }

        .pw-passenger-done {
            width: 100%;
            padding: 12px;
            margin-top: 12px;
            background: var(--pw-color-accent);
            border: none;
            border-radius: 8px;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .pw-passenger-done:hover {
            background: #ff6b1a;
        }

        /* ========== CUSTOM DATE PICKER ========== */
        .pw-date-btn {
            width: 100%;
            padding: 14px 16px;
            background: rgba(30, 30, 30, 0.9);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: #888;
            font-size: 16px;
            text-align: left;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
        }

        .pw-date-btn::after {
            content: '📅';
            font-size: 16px;
        }

        .pw-date-btn.pw-filled {
            color: #fff;
            border-color: var(--pw-color-accent);
        }

        .pw-datepicker-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            z-index: 210000;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }

        .pw-datepicker-overlay.active {
            display: block;
        }

        .pw-datepicker {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 94%;
            max-width: 500px;
            max-height: calc(100vh - 30px);
            max-height: calc(100dvh - 30px);
            background: #1a1a1a;
            border: 2px solid var(--pw-color-accent);
            border-radius: 16px;
            z-index: 210001;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
            overflow: hidden;
            flex-direction: column;
        }

        .pw-datepicker.active {
            display: flex;
            animation: pw-popupScale 0.25s ease-out;
        }

        .pw-datepicker-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 16px;
            background: rgba(255, 140, 61, 0.1);
            border-bottom: 1px solid rgba(255, 140, 61, 0.2);
        }

        .pw-datepicker-title {
            color: #fff;
            font-size: 0.95rem;
            font-weight: 600;
            margin: 0;
        }

        .pw-datepicker-close {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pw-datepicker-body {
            flex: 1;
            padding: 14px 14px 10px;
            overflow-y: auto;
            overflow-x: hidden;
            -webkit-overflow-scrolling: touch;
        }

        .pw-datepicker-months {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .pw-datepicker-month {
            background: rgba(34, 34, 34, 0.6);
            border-radius: 12px;
            padding: 14px 12px;
        }

        .pw-datepicker-month-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            margin-bottom: 12px;
        }

        .pw-datepicker-month-title-btn {
            flex: 1;
            min-height: 36px;
            background: rgba(255, 140, 61, 0.12);
            border: 1px solid rgba(255, 140, 61, 0.35);
            border-radius: 999px;
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
            padding: 6px 12px;
            transition: all 0.2s ease;
        }

        .pw-datepicker-month-title-btn:hover {
            background: rgba(255, 140, 61, 0.2);
            border-color: rgba(255, 140, 61, 0.55);
        }

        .pw-datepicker-month-title {
            color: var(--pw-color-accent);
            font-size: 0.92rem;
            font-weight: 700;
            text-transform: capitalize;
        }

        .pw-datepicker-month-caret {
            color: #fff;
            font-size: 11px;
            opacity: 0.85;
        }

        .pw-datepicker-nav {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(255, 140, 61, 0.2);
            border: 1px solid rgba(255, 140, 61, 0.5);
            color: var(--pw-color-accent);
            font-size: 18px;
            font-weight: 700;
            line-height: 1;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .pw-datepicker-nav:hover {
            background: var(--pw-color-accent);
            color: #fff;
        }

        .pw-datepicker-weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 4px;
            margin-bottom: 8px;
        }

        .pw-datepicker-weekday {
            color: #666;
            font-size: 12px;
            font-weight: 600;
            text-align: center;
            padding: 3px 0;
            text-transform: uppercase;
        }

        .pw-datepicker-days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 4px;
        }

        .pw-datepicker-day {
            min-height: 42px;
            aspect-ratio: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ccc;
            font-size: 15px;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.15s ease;
            background: transparent;
            border: none;
            padding: 0;
            position: relative;
        }

        .pw-datepicker-day:hover:not(.pw-day-disabled):not(.pw-day-empty) {
            background: rgba(255, 140, 61, 0.3);
            color: #fff;
        }

        .pw-datepicker-day.pw-day-empty {
            cursor: default;
        }

        .pw-datepicker-day.pw-day-disabled {
            color: #444;
            cursor: not-allowed;
        }

        .pw-datepicker-day.pw-day-today {
            border: 1px solid var(--pw-color-accent);
        }

        .pw-datepicker-day.pw-day-start {
            background: var(--pw-color-accent);
            color: #fff;
            font-weight: 700;
            border-radius: 10px;
            box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12);
        }

        .pw-monthpicker-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.72);
            z-index: 210010;
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
        }

        .pw-monthpicker-overlay.active {
            display: block;
        }

        .pw-monthpicker {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: min(92vw, 360px);
            background: #1c1c1c;
            border: 1px solid rgba(255, 140, 61, 0.45);
            border-radius: 14px;
            z-index: 210011;
            box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6);
            padding: 16px;
        }

        .pw-monthpicker.active {
            display: block;
            animation: pw-popupScale 0.2s ease-out;
        }

        .pw-monthpicker-title {
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            margin: 0 0 12px;
            text-align: center;
        }

        .pw-monthpicker-field {
            margin-bottom: 10px;
        }

        .pw-monthpicker-label {
            display: block;
            color: #aaa;
            font-size: 12px;
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }

        .pw-monthpicker-select {
            width: 100%;
            min-height: 42px;
            background: rgba(33, 33, 33, 0.95);
            border: 1px solid rgba(255, 140, 61, 0.28);
            border-radius: 8px;
            color: #fff;
            padding: 0 12px;
            font-size: 15px;
        }

        .pw-monthpicker-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 14px;
        }

        .pw-monthpicker-btn {
            min-height: 42px;
            border: none;
            border-radius: 9px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .pw-monthpicker-btn.cancel {
            background: #2f2f2f;
            color: #e2e2e2;
        }

        .pw-monthpicker-btn.apply {
            background: var(--pw-color-accent);
            color: #fff;
        }

        .pw-datepicker-footer {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px 16px;
            background: rgba(20, 20, 20, 0.98);
            border-top: 1px solid rgba(255, 140, 61, 0.2);
            flex-shrink: 0;
        }

        .pw-datepicker-confirm {
            width: 100%;
            padding: 14px 24px;
            background: var(--pw-color-accent);
            border: none;
            border-radius: 10px;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .pw-datepicker-confirm:hover {
            background: #ff6b1a;
            transform: scale(1.02);
        }

        .pw-datepicker-confirm:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            transform: none;
        }

        /* Date picker responsive - auto-scale for any screen */
        @media (max-width: 600px) {
            .pw-datepicker {
                width: 96vw;
                max-width: 460px;
                max-height: calc(100vh - 18px);
                max-height: calc(100dvh - 18px);
            }

            .pw-datepicker-header {
                padding: 12px 14px;
            }

            .pw-datepicker-title {
                font-size: 0.92rem;
            }

            .pw-datepicker-months {
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .pw-datepicker-month {
                padding: 8px;
            }

            .pw-datepicker-month-title {
                font-size: 0.85rem;
            }

            .pw-datepicker-body {
                padding: 10px 10px 8px;
                flex: 1;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
            }

            .pw-datepicker-weekday {
                font-size: 11px;
                padding: 2px 0;
            }

            .pw-datepicker-day {
                font-size: 14px;
                min-height: 38px;
            }

            .pw-datepicker-nav {
                width: 32px;
                height: 32px;
                font-size: 18px;
            }

            .pw-datepicker-footer {
                padding: 10px 12px;
            }

            .pw-datepicker-confirm {
                padding: 12px 20px;
                font-size: 15px;
            }
        }

        /* Super small screens */
        @media (max-width: 480px) {
            .pw-datepicker {
                width: 94vw;
                max-width: 380px;
                max-height: calc(100vh - 16px);
                max-height: calc(100dvh - 16px);
                border-radius: 12px;
            }

            .pw-datepicker-header {
                padding: 8px 10px;
            }

            .pw-datepicker-body {
                padding: 6px;
            }

            .pw-datepicker-month {
                padding: 6px;
            }

            .pw-datepicker-day {
                font-size: 13px;
                min-height: 34px;
            }

            .pw-datepicker-confirm {
                padding: 10px 14px;
                font-size: 13px;
            }
        }

        /* Extra small screens */
        @media (max-height: 600px) {
            .pw-datepicker {
                max-height: calc(100vh - 8px);
                max-height: calc(100dvh - 8px);
            }

            .pw-datepicker-header {
                padding: 8px 12px;
            }

            .pw-datepicker-body {
                padding: 6px;
            }

            .pw-datepicker-month {
                padding: 6px;
            }

            .pw-datepicker-month-header {
                margin-bottom: 6px;
            }

            .pw-datepicker-day {
                font-size: 12px;
                min-height: 30px;
            }

            .pw-datepicker-weekday {
                font-size: 10px;
            }

            .pw-datepicker-footer {
                padding: 8px 10px;
            }

            .pw-datepicker-confirm {
                padding: 10px 16px;
                font-size: 14px;
            }
        }

        /* ========== MODAL MOBILE ========== */
        @media (max-width: 600px) {
            .pw-modal-overlay {
                margin-top: 12px;
                padding: 12px 10px calc(110px + env(safe-area-inset-bottom));
            }

            .pw-modal {
                width: 100%;
                border-radius: 12px;
                border-width: 1px;
            }

            .pw-modal-header {
                padding: 10px 12px;
            }

            .pw-modal-title {
                font-size: 1rem;
            }

            .pw-modal-close {
                height: 36px;
                min-width: 44px;
            }

            .pw-modal-body {
                padding: 14px 14px 120px;
            }

            .pw-floating-cta {
                width: calc(100% - 20px);
                bottom: calc(12px + env(safe-area-inset-bottom));
            }

            .pw-floating-cta-inner {
                padding: 12px 14px;
            }

            .pw-quote-types {
                grid-template-columns: 1fr !important;
                gap: 12px;
            }

            .pw-quote-type {
                width: 100% !important;
                min-height: 90px;
                padding: 18px 14px;
                font-size: 0.92rem;
                flex-direction: row;
                justify-content: flex-start;
                text-align: left;
                gap: 12px;
            }

            .pw-quote-type-icon {
                font-size: 1.25rem;
                line-height: 1;
            }

            .pw-quote-row {
                grid-template-columns: 1fr;
            }

            .pw-quote-input,
            .pw-quote-select,
            .pw-quote-textarea {
                font-size: 15px;
                padding: 11px 12px;
            }
        }
