@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700&display=swap');

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    background: url('../images/lighthouse_bg.png') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    overflow-x: hidden;
}

/* Background overlay matches the soft blue sky transition */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 30, 65, 0.60) 0%, rgba(0, 15, 35, 0.80) 100%);
    z-index: 1;
    pointer-events: none;
}

#mobile-app-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-bottom: 90px;
}

.voos-page #mobile-app-container {
    padding-bottom: 0;
}

/* Title Header */
.main-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #001e41; /* Deep navy blue matching screenshot */
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-menu-btn {
    background: none;
    border: none;
    color: #ffffff;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.header-menu-btn:active {
    opacity: 0.7;
}

.header-menu-btn svg {
    width: 24px;
    height: 24px;
}

.header-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    padding: 0;
}

.header-icon-btn:active {
    opacity: 0.8;
}

.profile-btn {
    background-color: rgba(255, 255, 255, 0.12);
    border: none;
    color: #ffffff;
}

.profile-btn:active {
    background-color: rgba(255, 255, 255, 0.2);
}

.profile-btn svg {
    width: 20px;
    height: 20px;
}

.accessibility-btn {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.accessibility-btn:active {
    background-color: rgba(255, 255, 255, 0.05);
}

.accessibility-btn svg {
    width: 20px;
    height: 20px;
}

.app-header {
    text-align: center;
    color: #ffffff;
    margin-top: 25px;
    margin-bottom: 25px;
}

.app-title {
    font-size: 32px;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Top Navigation Tabs */
.top-nav-tabs {
    display: flex;
    justify-content: space-around;
    padding: 0 20px;
    margin-bottom: 30px;
}

.top-tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 4px solid transparent;
    transition: all 0.25s ease;
    flex: 1;
    text-align: center;
    cursor: pointer;
}

.top-tab-item svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.top-tab-item.active {
    color: #ffffff;
    border-bottom: 4px solid #009de0; /* Vibrant Azul blue underline */
    font-weight: 500;
}

.top-tab-item:active svg {
    transform: scale(0.95);
}

/* Main Form Card */
.search-card {
    background: #ffffff;
    border-radius: 12px;
    margin: 0 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Card Blue Header */
.card-header-tabs {
    background: #008cc9; /* Vibrant sky blue */
    display: flex;
}

.card-tab {
    flex: 1;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 16px 2px;
    cursor: pointer;
    border-bottom: 4px solid transparent;
    transition: all 0.2s ease;
}

.card-tab.active {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

/* Card Body Rows */
.form-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f3f6;
    position: relative;
}

.form-field {
    flex: 1;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Right-align fields in the right column */
.form-field.text-right-align {
    text-align: right;
}

.form-field.text-right-align .field-input {
    text-align: right;
}

.field-label {
    font-size: 24px;
    font-weight: 200;
    color: #b2b2b2;
    margin: 0;
    line-height: 1.1;
}

.field-input {
    font-size: 13px;
    color: #7f8c8d;
    font-weight: 400;
    border: none;
    background: transparent;
    outline: none;
    padding: 0;
    width: 100%;
    font-family: inherit;
    text-align: left;
}

.field-input::placeholder {
    color: #b5b5b5;
}

/* Hide Default Webkit Browser Date Picker Icons */
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

input[type="date"] {
    -moz-appearance: textfield;
    appearance: none;
}

/* Swap Plane Icon (flat, no button container styles) */
.swap-btn-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: auto;
}

.swap-airplane-icon {
    width: 18px;
    height: 18px;
    color: #b2b2b2;
    transform: rotate(45deg);
    cursor: pointer;
    transition: transform 0.25s ease, color 0.2s, width 0.2s, height 0.2s;
}

.swap-airplane-icon:active {
    transform: rotate(225deg) scale(0.9);
    color: #008cc9;
}

/* Has Selection State for Route Row */
.form-row.has-selection .swap-airplane-icon {
    transform: rotate(90deg); /* Points straight to the right */
    color: #0c2c5c; /* Dark deep blue matching layout */
    width: 20px;
    height: 20px;
}

.form-row.has-selection .swap-airplane-icon:active {
    transform: rotate(270deg) scale(0.9);
    color: #008cc9;
}

/* Selected Airport Display State */
.selected-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    animation: fadeIn 0.25s ease-out;
}

.selected-code {
    font-size: 38px;
    font-weight: 300;
    color: #1c355e; /* Premium dark navy-blue */
    line-height: 1.05;
    letter-spacing: 0.5px;
}

.selected-name {
    font-size: 13px;
    color: #7f8c8d;
    font-weight: 400;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    text-align: center;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Calendar Icon in the Center */
.calendar-icon-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
}

.calendar-icon-container svg {
    width: 18px;
    height: 18px;
    color: #b2b2b2;
    transition: color 0.25s ease, width 0.2s, height 0.2s;
}

#dates-route-row.has-selection .calendar-icon-container svg {
    color: #0c2c5c; /* Dark deep blue */
    width: 20px;
    height: 20px;
}

/* Passengers Input - Center Aligned */
.passengers-row {
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
    border-bottom: 1px solid #f0f3f6;
    cursor: pointer;
    width: 100%;
}

.passengers-label {
    font-size: 13px;
    font-weight: 500;
    color: #0082c5;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
}

.passengers-value {
    font-size: 18px;
    font-weight: 300;
    color: #2c3e50;
    text-align: center;
    width: 100%;
}

/* Payment Toggle Selector */
.payment-row {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.payment-btn-reais {
    border: 1px solid #008cc9;
    color: #008cc9;
    background: #ffffff;
    border-radius: 4px;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
}

.payment-btn-reais.active {
    background: #ffffff;
}

.payment-text-points {
    color: #7f8c8d;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: color 0.2s ease;
}

.payment-text-points.active {
    color: #008cc9;
    font-weight: 500;
}

/* Main Search Button (flat green) */
.search-btn-container {
    margin: 20px 16px 0 16px;
}

.search-submit-btn {
    width: 100%;
    background: #008a5e; /* Emerald Green */
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 16px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.search-submit-btn:active {
    background: #00704c;
    transform: scale(0.99);
}

/* Bottom Navigation Bar */
.bottom-navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0a2a5c; /* Deep dark blue matching bottom nav in screenshot */
    display: flex;
    justify-content: space-around;
    padding: 10px 0 15px 0;
    z-index: 100;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 11px;
    font-weight: 400;
    gap: 6px;
    flex: 1;
    transition: color 0.2s ease;
    cursor: pointer;
}

.bottom-nav-item svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.bottom-nav-item.active {
    color: #ffffff;
}

.bottom-nav-item.active svg {
    color: #00e5ff; /* Cyan active highlight */
}

/* Interactive Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: none;
    align-items: flex-end;
}

/* Centered Passengers Modal Styles */
#passengers-modal {
    align-items: center;
    justify-content: center;
}

.passengers-modal-content {
    width: 90%;
    max-width: 330px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalPop 0.25s ease-out;
}

.passengers-modal-header {
    padding: 24px 20px 10px 20px;
    text-align: center;
}

.passengers-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #1c355e; /* Navy blue title */
}

.passenger-counter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #f0f3f6;
}

.passenger-row-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.passenger-icon {
    width: 28px;
    height: 28px;
}

.passenger-info {
    display: flex;
    flex-direction: column;
}

.passenger-label {
    font-size: 15px;
    font-weight: 500;
    color: #008cc9;
}

.passenger-sublabel {
    font-size: 11px;
    color: #7f8c8d;
    margin-top: 2px;
}

.passenger-controls {
    display: flex;
    align-items: center;
    gap: 14px;
}

.passenger-counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #008cc9;
    background: #ffffff;
    font-size: 18px;
    color: #008cc9;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    transition: all 0.15s ease;
}

.passenger-counter-btn:disabled {
    border-color: #cbd5e0;
    color: #cbd5e0;
    cursor: not-allowed;
}

.passenger-counter-btn:active:not(:disabled) {
    background: #e6f2ff;
}

.passenger-counter-value {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    min-width: 16px;
    text-align: center;
}

.passengers-modal-confirm-btn {
    width: 100%;
    background: #008a5e;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    padding: 16px;
    cursor: pointer;
    outline: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    text-align: center;
    transition: background-color 0.2s ease;
}

.passengers-modal-confirm-btn:active {
    background: #00704c;
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Airport Modal Overlay Styles */
.airport-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 2000;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.airport-modal-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eef2f6;
    background: #ffffff;
}

.airport-modal-header .back-btn {
    background: none;
    border: none;
    font-size: 36px;
    font-weight: 300;
    color: #008cc9;
    cursor: pointer;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.airport-modal-title {
    font-size: 20px;
    font-weight: 400;
    color: #2c3e50;
    flex: 1;
    text-align: center;
    margin-right: 25px; /* balance the back button spacing */
}

.airport-modal-inputs {
    padding: 15px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #ffffff;
}

.airport-input-row {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #eef2f6;
    padding-bottom: 8px;
}

.airport-input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.airport-input-icon.circle-icon {
    width: 12px;
    height: 12px;
    border: 2px solid #008cc9;
    border-radius: 50%;
    margin-left: 4px;
    margin-right: 4px;
}

.airport-input-icon.pin-icon svg {
    width: 20px;
    height: 20px;
    color: #008cc9;
}

.airport-text-input {
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 300;
    color: #2c3e50;
    width: 80%;
    font-family: inherit;
    background: transparent;
}

.airport-text-input::placeholder {
    color: #cbd5e0;
}

.modal-swap-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #a0aec0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-swap-btn svg {
    width: 22px;
    height: 22px;
}

.airport-section-header {
    background: #eef2f6;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 700;
    color: #008cc9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.airport-list {
    flex: 1;
    overflow-y: auto;
    background: #ffffff;
}

.airport-item {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #f7f9fa;
    cursor: pointer;
    transition: background 0.15s ease;
}

.airport-item:active {
    background: #f7fafc;
}

.airport-code {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    width: 60px;
}

.airport-name {
    font-size: 16px;
    color: #4a5568;
}

/* Date Field Row Selected Displays */
.date-label-blue {
    font-size: 13px;
    font-weight: 500;
    color: #008cc9;
    letter-spacing: 0.5px;
}

.selected-date-value {
    font-size: 18px;
    font-weight: 400;
    color: #2c3e50;
    line-height: 1.2;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.selected-date-dayofweek {
    font-size: 13px;
    color: #7f8c8d;
    font-weight: 400;
    margin-top: 2px;
}

.date-placeholder-text {
    font-size: 13px;
    color: #b5b5b5;
    font-weight: 400;
}

/* Calendar Modal Overlay Styles */
.calendar-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 2000;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.calendar-modal-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eef2f6;
    background: #ffffff;
}

.calendar-modal-header .close-btn {
    background: none;
    border: none;
    font-size: 32px;
    font-weight: 300;
    color: #008cc9;
    cursor: pointer;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.calendar-modal-title {
    font-size: 20px;
    font-weight: 400;
    color: #2c3e50;
    flex: 1;
    text-align: center;
    margin-right: 25px; /* balance close button spacing */
}

/* Tabs */
.calendar-modal-tabs {
    display: flex;
    background: #f5f8fa;
    border-bottom: 1px solid #eef2f6;
}

.calendar-tab-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 10px;
    cursor: pointer;
    border-bottom: 4px solid transparent;
    transition: all 0.2s ease;
}

.calendar-tab-btn.active {
    background: #ffffff;
    border-bottom-color: #008cc9;
}

.calendar-tab-btn.active .tab-date {
    color: #008cc9;
}

.tab-label {
    font-size: 11px;
    font-weight: 500;
    color: #008cc9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.tab-date {
    font-size: 22px;
    font-weight: 300;
    color: #a0aec0; /* default placeholder color */
    line-height: 1.1;
}

.calendar-tab-btn.active .tab-date {
    font-weight: 500;
    color: #1a2c40;
}

.tab-dayofweek {
    font-size: 12px;
    color: #7f8c8d;
    font-weight: 400;
    margin-top: 2px;
}

/* One way mode modifier */
.calendar-modal-tabs.one-way-mode #calendar-tab-return {
    display: none !important;
}

.calendar-modal-tabs.one-way-mode #calendar-tab-departure {
    flex: 1;
    width: 100%;
}

/* Weekdays header */
.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid #eef2f6;
    font-size: 12px;
    font-weight: 600;
    color: #008cc9;
    background: #ffffff;
}

/* Scrollable months container */
.calendar-months {
    flex: 1;
    overflow-y: auto;
    padding: 20px 15px 120px 15px; /* bottom padding so contents scroll above footer */
    background: #ffffff;
}

.month-container {
    margin-bottom: 30px;
}

.month-title {
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    row-gap: 12px;
    column-gap: 0;
    text-align: center;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    cursor: pointer;
    border-radius: 50%;
    margin: 0 auto;
    width: 40px;
    height: 40px;
    transition: all 0.15s ease;
}

.day-disabled {
    color: #e2e8f0 !important;
    cursor: not-allowed;
    pointer-events: none;
}

.day-active {
    color: #2c3e50;
}

.day-active:active {
    background: #edf2f7;
}

.day-selected {
    background: #008cc9 !important;
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 50%;
}

.day-in-range {
    background: #e1f0ff !important;
    color: #008cc9 !important;
    border-radius: 0 !important;
    width: 100% !important;
}

/* Sticky Footer */
.calendar-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #eef2f6;
    display: flex;
    gap: 12px;
    padding: 15px 20px 25px 20px;
    z-index: 100;
}

.calendar-footer .footer-btn {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: background-color 0.2s ease;
}

.calendar-footer .btn-clear {
    background: #f1f3f5;
    color: #4a5568;
}

.calendar-footer .btn-clear:active {
    background: #e2e6ea;
}

.calendar-footer .btn-confirm {
    background: #008a5e; /* emerald green matching search button */
    color: #ffffff;
}

.calendar-footer .btn-confirm:active {
    background: #00704c;
}

/* ==========================================
   LOADING OVERLAY & SPINNER
   ========================================== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 46, 82, 0.9); /* Premium dark navy overlay with high opacity */
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.circular-loader {
    width: 90px;
    height: 90px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-top: 3px solid #00e5ff; /* Cyan accent spinner */
    border-radius: 50%;
    position: relative;
    animation: spin 1.2s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-plane {
    width: 26px;
    height: 26px;
    color: #ffffff;
    position: absolute;
    /* Counter-rotates to stay upright at 45 degrees while ring spins */
    animation: counterSpin 1.2s linear infinite;
}

.loader-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.loader-text span:first-child {
    font-weight: 300;
    opacity: 0.9;
}

.loader-text span:last-child {
    font-weight: 600;
    color: #00e5ff;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes counterSpin {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(-315deg); }
}

/* ==========================================
   FLIGHT SEARCH RESULTS SCREEN (voos.php)
   ========================================== */
.results-screen-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: transparent;
    color: #2c3e50;
    position: relative;
}

.results-header {
    background: #102e52;
    color: #ffffff;
    padding: 0 0 0 0;
}

/* Breadcrumb: rota completa em cinza suave no topo */
.results-header-breadcrumb {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    padding: 10px 20px 6px 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.2px;
}

.results-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 16px 10px 16px;
}

/* Botão voltar com texto “voos encontrados” */
.back-btn-row {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    padding: 4px 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 2px;
    font-family: inherit;
    line-height: 1;
    white-space: nowrap;
}

.back-btn-row .back-label {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
}

/* Mantém o .back-btn antigo para compatibilidade com outras páginas */
.back-btn {
    background: none;
    border: none;
    font-size: 38px;
    font-weight: 200;
    color: #ffffff;
    cursor: pointer;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.results-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.edit-search-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.edit-search-btn:active {
    opacity: 0.7;
}

.edit-search-btn svg {
    width: 20px;
    height: 20px;
}

/* Rota resumida abaixo do título */
.results-route-summary {
    padding: 0 16px 4px 16px;
    overflow: hidden;
}

/* Linha da rota: tudo em uma linha, trunca se muito longo */
.route-codes-line {
    display: flex;
    align-items: baseline;
    flex-wrap: nowrap;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    gap: 4px;
    font-size: 14px;
    color: #ffffff;
    line-height: 1.5;
}

.route-city {
    font-weight: 400;
    flex-shrink: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    white-space: nowrap;
}

.route-iata-bold {
    font-weight: 700;
    flex-shrink: 0;
    white-space: nowrap;
}

.route-arrow {
    flex-shrink: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    padding: 0 2px;
}

.route-travelers {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.route-travelers .fas {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

/* Data selecionada centralizada grande */
.results-selected-date {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    padding: 6px 16px 12px 16px;
    letter-spacing: 0.5px;
}

.results-flight-count {
    font-size: 12px;
    color: #00e5ff;
    font-weight: 500;
    margin-top: 4px;
}

/* Date tabs scrollbar row */
.results-date-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 12px 20px;
    background: #102e52;
    scrollbar-width: none;
}

.results-date-tabs::-webkit-scrollbar {
    display: none;
}

.results-date-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.results-date-tab.active {
    background: #ffffff;
    color: #102e52;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Promo Banner */
.results-promo-banner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 15px 20px 5px 20px;
    padding: 14px 16px;
    background: #eef9ff;
    border: 1px solid #bce5ff;
    border-radius: 10px;
}

.promo-icon-badge {
    width: 28px;
    height: 28px;
    background: #008cc9;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.promo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #008cc9;
    flex-shrink: 0;
}

.promo-icon svg {
    width: 20px;
    height: 20px;
}

.promo-text {
    font-size: 13px;
    line-height: 1.5;
    color: #0d4b75;
    font-weight: 500;
}

/* Section Header (nome das rotas entre grupos de voos) */
.flight-section-header {
    font-size: 13px;
    color: #ffffff;
    font-weight: 700;
    padding: 10px 20px 5px 20px;
}

/* Flights List */
.results-flights-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 8px 20px 40px 20px;
}

.flight-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    padding: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid #eef2f6;
    overflow: hidden;
}

/* Badge de PROMOÇÃO no topo esquerdo (dentro do card, estilo pill) */
.flight-card-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f4ff;
    color: #0d5fa0;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    align-self: flex-start;
}

.badge-percent-icon {
    width: 18px;
    height: 18px;
    background: #0d5fa0;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Linha de rota: horário | avião linha avião | horário */
.flight-route-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 8px;
}

/* Bloco de horário + avião + IATA empilhados verticalmente */
.route-time-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-width: 50px;
}

.route-time-block.text-right {
    align-items: flex-end;
    text-align: right;
}

.route-time {
    font-size: 24px;
    font-weight: 600;
    color: #102e52;
    line-height: 1.1;
}

.route-iata-code {
    font-size: 13px;
    color: #7f8c8d;
    font-weight: 500;
    margin-top: 0;
}

/* Ícone de avião inline pequeno */
.inline-plane-icon {
    width: 18px;
    height: 18px;
    color: #102e52;
    transform: rotate(0deg);
    margin: 2px 0;
}

/* Divisor central: linha pontilhada + texto do voo abaixo */
.route-plane-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    position: relative;
    gap: 4px;
    margin: 0 4px;
    padding-top: 4px;
}

.dotted-line {
    width: 100%;
    height: 1px;
    border-top: 2px dotted #cbd5e0;
    position: relative;
}

/* Número do voo abaixo da linha pontilhada */
.flight-number-detail {
    font-size: 11px;
    color: #7f8c8d;
    font-weight: 400;
    white-space: nowrap;
    text-align: center;
}

.flight-action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

/* Duração em azul */
.flight-duration-bold {
    font-size: 13px;
    color: #0d5fa0;
    font-weight: 400;
}

.flight-duration-bold strong {
    font-weight: 700;
    color: #0d5fa0;
}

/* Botão Ver detalhes com borda outlined */
.flight-details-btn {
    background: none;
    border: 1px solid #a0aec0;
    color: #2c3e50;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    padding: 5px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-family: inherit;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.flight-details-btn:active {
    background: #f0f3f6;
}

.flight-price-divider {
    height: 1px;
    background: #f0f3f6;
    margin: 0 -16px 14px -16px;
}

.flight-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.price-label {
    font-size: 12px;
    color: #7f8c8d;
    font-weight: 400;
    padding-bottom: 4px;
}

.price-block {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.price-original {
    font-size: 12px;
    color: #a0aec0;
    text-decoration: line-through;
    font-weight: 400;
}

.price-discounted {
    font-size: 24px;
    color: #0d5fa0;
    font-weight: 700;
    margin-top: 2px;
    line-height: 1.1;
}

.price-discounted .cents {
    font-size: 18px;
    font-weight: 700;
}

.price-total-passengers {
    font-size: 11px;
    color: #7f8c8d;
    font-weight: 500;
    margin-top: 3px;
    display: block;
}


/* PC/Desktop Blank Screen Restriction */
@media (min-width: 768px) {
    body {
        background-color: #ffffff !important;
        background-image: none !important;
    }
    
    body::before {
        display: none !important;
    }
    
    #mobile-app-container {
        display: none !important;
    }
    
    #desktop-overlay {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #ffffff;
        z-index: 999999;
        justify-content: center;
        align-items: center;
    }
}

#desktop-overlay {
    display: none;
}

/* ==========================================
   TARIFF SELECTION MODAL
   ========================================== */
.tariff-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #eaeaea; /* Light grey backdrop */
    z-index: 5000;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.tariff-modal-overlay.open {
    display: flex;
}

.tariff-modal-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

/* Header */
.tariff-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1.5px solid #dcdcdc;
    background: #ffffff;
    flex-shrink: 0;
}

.tariff-header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    flex: 1;
}

.tariff-modal-title {
    font-size: 16px;
    font-weight: 500;
    color: #102e52;
}

.tariff-flight-subtitle {
    font-size: 12.5px;
    font-weight: 700;
    color: #102e52;
    letter-spacing: 0.2px;
}

.tariff-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 20px;
    color: #102e52;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: opacity 0.15s ease;
    flex-shrink: 0;
}

.tariff-info-btn {
    background: none;
    border: 1.5px solid #102e52;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 11px;
    color: #102e52;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.tariff-close-btn:active,
.tariff-info-btn:active {
    opacity: 0.7;
}

/* Swipeable cards wrapper */
.tariff-cards-wrapper {
    display: flex;
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding: 16px 16px 12px 16px;
    box-sizing: border-box;
    background: #eaeaea;
}

.tariff-cards-wrapper::-webkit-scrollbar {
    display: none;
}

/* Individual tariff card */
.tariff-card {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    scroll-snap-align: center;
    overflow-y: auto;
    padding: 20px 20px 16px 20px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 10px;
    border: 2px solid #dcdcdc;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.tariff-card.active-card {
    border-color: #009de0;
    box-shadow: 0 6px 16px rgba(0, 157, 224, 0.15);
}

/* Top: badge + recommended */
.tariff-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.tariff-name-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.azul-badge {
    background: #e8f4ff;
    color: #1c6eb4;
    border: 1.5px solid #b3d9ff;
}

.mais-azul-badge {
    background: #dff0e8;
    color: #166534;
    border: 1.5px solid #a7d7b8;
}

.tariff-recommended-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 6px;
    background: #102e52;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
}

.tariff-recommended-badge .fas {
    font-size: 10px;
    color: #f6c90e;
}

/* Price block */
.tariff-price-block {
    margin-bottom: 16px;
}

.tariff-price-original {
    display: block;
    font-size: 12px;
    color: #a0aec0;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.tariff-price-main {
    display: inline-flex;
    align-items: flex-start;
    color: #1c6eb4;
    font-weight: 700;
    line-height: 1;
}

.tariff-price-symbol {
    font-size: 15px;
    margin-top: 3px;
    margin-right: 3px;
}

.tariff-price-int {
    font-size: 34px;
    letter-spacing: -0.5px;
}

.tariff-price-cents {
    font-size: 17px;
    margin-top: 3px;
}

/* Services list */
.tariff-services-list {
    display: flex;
    flex-direction: column;
    border-top: 1px dashed #e2e8f0;
    margin-bottom: 16px;
}

.tariff-service-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 13px;
    color: #2c3e50;
    line-height: 1.4;
}

.tariff-svc-icon {
    width: 20px;
    font-size: 16px;
    flex-shrink: 0;
    text-align: center;
    color: #8a8a8f;
}

.tariff-service-row.disabled span {
    color: #8a8a8f;
}

.tariff-svc-icon.green {
    color: #00704c;
}

/* Policies */
.tariff-policies {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 4px;
}

.tariff-policies p {
    margin: 0;
    font-size: 12.5px;
    color: #55555f;
    line-height: 1.4;
}

.tariff-policies strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Dots */
.tariff-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 8px 0 12px 0;
    background: #eaeaea;
    flex-shrink: 0;
}

.tariff-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b9cde3;
    transition: background 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.tariff-dot.active {
    background: #102e52;
    transform: scale(1.15);
}

/* Footer button */
.tariff-footer {
    padding: 12px 16px 20px 16px;
    background: #ffffff;
    flex-shrink: 0;
    border-top: 1.5px solid #dcdcdc;
}

.tariff-select-btn {
    width: 100%;
    background: #00704c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.3px;
    transition: background 0.2s ease, transform 0.1s ease;
}

.tariff-select-btn:active {
    background: #00593d;
    transform: scale(0.99);
}

/* ==========================================
   SELECTION SUMMARY SCREEN (CHECKOUT)
   ========================================== */
.summary-screen-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: transparent;
}

/* Summary Header */
.summary-header {
    background: #102e52;
    color: #ffffff;
    padding: 14px 20px 14px 20px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.summary-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.summary-back-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2px;
    font-family: inherit;
    line-height: 1;
}

.summary-back-label {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
}

.summary-title {
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.summary-header-route {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 4px;
}

.summary-header-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

/* Content Area */
.summary-scrollable-content {
    flex: 1;
    overflow-y: auto;
    padding-top: 16px;
    padding-bottom: 24px;
}

.summary-section {
    display: flex;
    flex-direction: column;
}

.summary-section-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 8px 20px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
}

.summary-section-title {
    flex: 1;
    margin-right: 8px;
}

.summary-edit-icon {
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    flex-shrink: 0;
    transition: opacity 0.15s ease;
}

.summary-edit-icon:active {
    opacity: 0.7;
}

.summary-divider-line {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    margin: 16px 20px;
}

/* Card Tariff Row */
.summary-card-tariff-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

/* Plane icon direction helpers */
.inline-plane-icon.takeoff {
    transform: rotate(-15deg);
}

.inline-plane-icon.landing {
    transform: rotate(15deg);
}

/* Summary Footer */
.summary-footer {
    background: #102e52;
    border-top: 1.5px solid rgba(255, 255, 255, 0.1);
    padding: 14px 20px 24px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    z-index: 100;
}

.summary-footer-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.summary-total-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.summary-total-price {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
}

.summary-details-link {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    margin-top: 2px;
    font-weight: 500;
    display: inline-block;
}

.summary-checkout-btn {
    background: #00704c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease, transform 0.1s ease;
}

.summary-checkout-btn:active {
    background: #00593d;
    transform: scale(0.98);
}

/* Tariff Rules Section */
.summary-rules-container {
    margin: 16px 20px 40px 20px;
    display: flex;
    flex-direction: column;
}

.summary-rules-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.summary-rules-container.expanded .summary-rules-details {
    max-height: 2000px;
    opacity: 1;
}

.summary-rules-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.summary-rules-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.summary-rule-badge {
    background: #ffffff;
    color: #102e52;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.summary-rule-badge strong {
    font-weight: 700;
}

.summary-rules-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.summary-rules-text p {
    margin: 0 0 12px 0;
}

.rules-section-title {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 16px !important;
}

.rules-list {
    margin: 0 0 16px 0;
    padding-left: 0;
    list-style: none;
}

.rules-list li {
    margin-bottom: 8px;
}

.summary-rules-toggle-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 8px;
    transition: color 0.2s ease;
}

.summary-rules-toggle-bar:active {
    color: #ffffff;
}

.summary-rules-toggle-bar .toggle-chevron {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.summary-rules-container.expanded .toggle-chevron {
    transform: rotate(180deg);
}

/* ==========================================
   TRAVELERS & CONTACT SCREENS
   ========================================== */
.travelers-screen-container,
.contact-screen-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: transparent;
}

/* Header */
.travelers-header,
.contact-header {
    background: #102e52;
    color: #ffffff;
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.travelers-header-top,
.contact-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.travelers-back-btn,
.contact-back-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 32px;
    font-weight: 200;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.travelers-title,
.contact-title {
    font-size: 19px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.travelers-home-btn,
.contact-home-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

/* Content Area */
.travelers-scrollable-content,
.contact-scrollable-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 20px 100px 20px; /* bottom padding so elements scroll above sticky footer */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.travelers-subtitle,
.contact-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    font-weight: 400;
    margin-top: -5px;
    margin-bottom: 5px;
}

.travelers-section-title {
    font-size: 17px;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: -5px;
    padding-left: 2px;
}

/* Form Card */
.traveler-form-card,
.contact-form-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.traveler-card-header {
    background: #0093d9; /* Azul cyan header banner */
    color: #ffffff;
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.contact-card-header {
    background: #f1f3f5; /* Light grey header background as in mockup */
    color: #4a5568; /* Dark text as in mockup */
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #eef2f6;
}

.traveler-card-fields,
.contact-card-fields {
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.traveler-field-group,
.contact-field-group {
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    border-bottom: 1px solid #eef2f6;
    position: relative;
}

.traveler-field-group:last-child,
.contact-field-group:last-child {
    border-bottom: none;
}

.traveler-field-label,
.contact-field-label {
    font-size: 11px;
    color: #008cc9;
    font-weight: 500;
    margin-bottom: 4px;
    text-transform: none;
    letter-spacing: 0.2px;
}

.traveler-field-input,
.contact-field-input {
    border: none;
    outline: none;
    font-size: 16px;
    color: #1a2c40;
    font-weight: 400;
    padding: 2px 0;
    width: 100%;
    font-family: inherit;
    background: transparent;
}

.traveler-field-input::placeholder,
.contact-field-input::placeholder {
    color: #cbd5e0;
}

/* Parallel fields row */
.contact-fields-row {
    display: flex;
    border-bottom: 1px solid #eef2f6;
    width: 100%;
}

.contact-fields-row .contact-field-group {
    border-bottom: none;
}

.contact-fields-row .contact-field-group:first-child {
    border-right: 1px solid #eef2f6;
}

.width-35 {
    width: 35%;
    flex: none;
}

.width-65 {
    width: 65%;
    flex: none;
}

/* Dropdown styling */
.dropdown-group {
    position: relative;
}

.dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.traveler-field-select,
.contact-field-select {
    border: none;
    outline: none;
    font-size: 16px;
    color: #1a2c40;
    font-weight: 400;
    padding: 2px 24px 2px 0;
    width: 100%;
    font-family: inherit;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.select-chevron {
    position: absolute;
    right: 4px;
    pointer-events: none;
    color: #1a2c40;
    font-size: 12px;
}

/* Checkbox container row */
.traveler-checkbox-row,
.contact-checkbox-row {
    padding: 16px;
    background: #ffffff;
    border-top: 1px solid #eef2f6;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e0;
    border-radius: 4px;
    background-color: #ffffff;
    display: inline-block;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s ease;
}

.checkbox-container input:checked ~ .custom-checkbox {
    border-color: #008cc9;
    background-color: #008cc9;
}

.custom-checkbox::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .custom-checkbox::after {
    display: block;
}

.checkbox-text {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.4;
    font-weight: 400;
}

/* Pet Banner */
.dog-banner-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    margin-top: 16px;
    margin-bottom: 24px;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid #dee2e6;
}

.pet-banner-image-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.pet-banner-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.pet-banner-info-box {
    padding: 16px 20px 20px 20px;
    color: #212529;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.pet-banner-main-text {
    font-size: 15px;
    line-height: 1.4;
    margin: 0 0 6px 0;
    color: #0b2240;
}

.pet-banner-main-text strong {
    color: #0078d4; /* Blue color for high contrast on white bg */
    font-weight: 700;
}

.pet-price-nowrap {
    white-space: nowrap;
}

.pet-banner-sub-text {
    font-size: 12px;
    color: #6c757d;
    line-height: 1.4;
    margin: 0 0 16px 0;
}

.pet-banner-add-btn {
    width: 100%;
    background: #0078d4;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 120, 212, 0.2);
}

.pet-banner-add-btn:active {
    background: #005a9e;
    transform: scale(0.99);
}

.pet-banner-add-btn.added {
    background: #008a5e !important;
    box-shadow: 0 2px 6px rgba(0, 138, 94, 0.3) !important;
}

/* Sticky Footer */
.travelers-footer,
.contact-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #102e52; /* Deep dark blue matching summary footer */
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px 25px 20px;
    z-index: 100;
}

.travelers-footer-left,
.contact-footer-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.travelers-footer-total-label,
.contact-footer-total-label {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    font-weight: 400;
}

.travelers-footer-total-price,
.contact-footer-total-price {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.travelers-details-link,
.contact-details-link {
    font-size: 12px;
    color: #00e5ff;
    text-decoration: none;
    font-weight: 500;
}

.travelers-details-link:active,
.contact-details-link:active {
    opacity: 0.8;
}

.travelers-footer-right,
.contact-footer-right {
    display: flex;
    align-items: center;
}

.travelers-submit-btn,
.contact-submit-btn {
    background: #008a5e; /* Emerald Green */
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
    font-family: inherit;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0, 138, 94, 0.3);
}

.travelers-submit-btn:active,
.contact-submit-btn:active {
    background: #00704c;
    transform: scale(0.98);
}

/* ==========================================================================
   SEAT SELECTION & SUMMARY SCREENS
   ========================================================================== */
.seat-selection-screen-container,
.seat-summary-screen-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    background: transparent;
}

/* Header */
.seat-selection-header,
.seat-summary-header {
    background: #102e52;
    color: #ffffff;
    padding: 14px 20px 0 20px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    z-index: 110;
}

.seat-selection-header-top,
.seat-summary-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
}

.seat-close-btn,
.seat-summary-back-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 32px;
    font-weight: 200;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.seat-selection-title,
.seat-summary-title {
    font-size: 19px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.seat-info-btn,
.seat-summary-home-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

/* Tabs */
.seat-selection-tabs,
.seat-summary-tabs {
    display: flex;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.seat-tab-btn,
.seat-summary-tab-btn {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
}

.seat-tab-btn.active,
.seat-summary-tab-btn.active {
    color: #ffffff;
    border-bottom-color: #00e5ff; /* Cyan active underline */
}

/* Loading Modal Overlay (Match Image 3) */
.seat-loading-modal-overlay {
    position: absolute;
    top: 98px; /* beneath header */
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 15, 35, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 150;
    padding: 20px;
    transition: opacity 0.3s ease;
}

.seat-loading-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 35px 24px;
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.seat-loading-dest {
    color: #555555;
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 500;
}

.seat-loading-leg {
    color: #009de0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.seat-loading-route {
    color: #102e52;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 24px;
}

.seat-loading-spinner-circle {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seat-spinner-ring {
    width: 42px;
    height: 42px;
    border: 4px solid rgba(0, 157, 224, 0.15);
    border-top: 4px solid #009de0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.seat-loading-text {
    color: #555555;
    font-size: 14px;
    font-weight: 600;
}

/* Seat Grid Content */
.seat-selection-content {
    flex: 1;
    overflow-y: auto;
    padding: 0px 8px 160px 8px; /* reduced horizontal padding to fit smaller viewports */
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #2d3d52; /* slate blue cabin background */
}

/* Fuselage / Airplane Cabin Container (Match Image 1) */
.seat-map-grid-wrapper {
    width: 100%;
    max-width: 320px;
    background: #ffffff; /* pure white fuselage background */
    border-radius: 35px 35px 0 0;
    padding: 25px 8px 25px 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative; /* to absolute position the vertical comfort badge */
}

.aircraft-model-name {
    font-size: 21px;
    font-weight: 700;
    color: #003057; /* dark navy */
    margin-bottom: 15px;
    background: none;
    padding: 0;
    border-radius: 0;
    letter-spacing: 0.5px;
}

.seat-map-cols {
    display: grid;
    grid-template-columns: repeat(3, 38px) 24px repeat(3, 38px);
    gap: 6px;
    text-align: center;
    width: 100%;
    margin-bottom: 18px;
    background: transparent; /* borderless transparent columns */
    padding: 6px 0;
    border-radius: 0;
    border: none;
}

.seat-map-cols span {
    color: #003057;
    font-size: 13px;
    font-weight: 700;
}

.seat-map-cols .aisle-label {
    visibility: hidden;
}

.seat-class-title {
    font-size: 13px;
    color: #00a2e8; /* Espaço Azul cyan */
    width: 100%;
    text-align: center;
    padding: 0;
    margin-bottom: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: none;
}

.seat-map-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.seat-row {
    display: grid;
    grid-template-columns: repeat(3, 38px) 24px repeat(3, 38px);
    gap: 6px;
    align-items: center;
    width: 100%;
}

.row-number-label {
    color: #6c757d;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

/* Emergency Exit Row Line (Mockup) */
.emergency-exit-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #e55353;
    font-size: 10px;
    font-weight: 700;
    gap: 6px;
    margin: 15px 0;
    letter-spacing: 0.8px;
    box-sizing: border-box;
}

.exit-arrow-left, .exit-arrow-right {
    color: #e55353;
    font-size: 10px;
    display: flex;
    align-items: center;
    flex: 1;
}

.exit-arrow-left::after {
    content: '';
    flex: 1;
    border-bottom: 1.5px dashed #e55353;
    margin-left: 6px;
}

.exit-arrow-right::before {
    content: '';
    flex: 1;
    border-bottom: 1.5px dashed #e55353;
    margin-right: 6px;
}

/* Vertical comfort "Mais espaço" Badge (Mockup rows 3-7 left side) */
.mais-espaco-badge {
    position: absolute;
    left: -4px;
    top: 155px; /* Aligns with rows 3-7 vertical position */
    background: #003057;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 6px;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.mais-espaco-badge i {
    font-size: 12px;
}

.mais-espaco-badge span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transform: rotate(180deg);
}

/* Seat Buttons - Borderless transparent armchairs */
.seat-btn {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    width: 38px;
    height: 38px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
}

.seat-btn .seat-icon-svg {
    display: block;
    width: 24px;
    height: 24px;
    background-color: #003057; /* Standard available default is dark navy */
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><rect x='25' y='10' width='50' height='52' rx='10' /><rect x='18' y='66' width='64' height='20' rx='6' /><rect x='8' y='32' width='12' height='38' rx='5' /><rect x='80' y='32' width='12' height='38' rx='5' /></svg>") no-repeat center;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><rect x='25' y='10' width='50' height='52' rx='10' /><rect x='18' y='66' width='64' height='20' rx='6' /><rect x='8' y='32' width='12' height='38' rx='5' /><rect x='80' y='32' width='12' height='38' rx='5' /></svg>") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    transition: background-color 0.2s ease;
}

/* Available standard seat hover */
.seat-btn.standard:hover .seat-icon-svg {
    background-color: #0070c0;
}

/* Comfort seats (Espaço Azul) standard (available) state */
.seat-row[data-row="1"] .seat-btn.standard .seat-icon-svg,
.seat-row[data-row="2"] .seat-btn.standard .seat-icon-svg,
.seat-row[data-row="10"] .seat-btn.standard .seat-icon-svg,
.seat-row[data-row="11"] .seat-btn.standard .seat-icon-svg {
    background-color: #00a2e8 !important; /* Cyan / Light blue */
}

/* Selected seat - Filled navy background with white checkmark overlay */
.seat-btn.selected {
    background-color: #0b2240 !important;
    border-radius: 8px !important;
}

.seat-btn.selected .seat-icon-svg {
    background-color: #ffffff !important;
}

.seat-btn.selected::after {
    content: '\f058'; /* FontAwesome circle-check Unicode */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: -2px;
    right: -2px;
    color: #00e676; /* Green checkmark */
    font-size: 12px;
    background: #ffffff;
    border-radius: 50%;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    z-index: 5;
}

/* Companion seat - Green/Emerald background with user overlay icon */
.seat-btn.selected-companion {
    background-color: #008a5e !important;
    border-radius: 8px !important;
}

.seat-btn.selected-companion .seat-icon-svg {
    background-color: #ffffff !important;
}

.seat-btn.selected-companion::after {
    content: '\f007'; /* FontAwesome user icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: -2px;
    right: -2px;
    color: #008a5e;
    font-size: 9px;
    background: #ffffff;
    border-radius: 50%;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    z-index: 5;
}

/* Occupied seat - Solid light-gray armchair */
.seat-btn.occupied {
    background: transparent !important;
    border: none !important;
    cursor: not-allowed;
    pointer-events: none;
}

.seat-btn.occupied .seat-icon-svg {
    display: block !important;
    background-color: #ced4da !important; /* solid gray */
}

/* Selection Footer */
.seat-selection-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #102e52;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px 25px 20px;
    z-index: 100;
}

.seat-selection-footer-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.seat-passenger-name {
    font-size: 15px;
    color: #ffffff;
    font-weight: 700;
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
}

.seat-selected-badge-box {
    display: inline-block;
    background: transparent;
    border: 1px solid #009de0;
    color: #00e5ff;
    padding: 6px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    width: fit-content;
    margin-top: 4px;
}

.seat-selection-footer-right {
    display: flex;
    align-items: center;
}

.seat-prosseguir-btn {
    background: #008a5e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
    font-family: inherit;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0, 138, 94, 0.3);
}

.seat-prosseguir-btn:active:not(:disabled) {
    background: #00704c;
    transform: scale(0.98);
}

.seat-prosseguir-btn:disabled {
    background: #4a5568;
    color: #a0aec0;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.6;
}

/* ==========================================================================
   SEAT SUMMARY STYLE
   ========================================================================== */
.seat-summary-scrollable-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0 100px 0; /* padding left/right is managed inside slider container */
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.seat-summary-subtext {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 5px;
    padding: 0 20px;
}

/* Horizontal card slider for summary screen */
.seat-summary-cards-slider {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding: 10px 20px 20px 20px;
    width: 100%;
    box-sizing: border-box;
}

.seat-summary-cards-slider::-webkit-scrollbar {
    display: none;
}

.seat-summary-leg-block {
    min-width: 90%; /* Leaves 10% space so the next card peaks in! Matches print exactly! */
    width: 90%;
    flex-shrink: 0;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    cursor: pointer;
}

.seat-summary-leg-title {
    background-color: #009de0;
    color: #ffffff;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
}

.seat-summary-card {
    background: #ffffff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    min-height: 380px; /* Tall spacious cards matching print */
    display: flex;
    flex-direction: column;
}

.seat-summary-card-header {
    background: #f1f3f5;
    padding: 10px 15px;
    font-size: 12px;
    color: #495057;
    font-weight: 600;
    border-bottom: 1px solid #dee2e6;
}

.seat-summary-card-body {
    padding: 18px 15px;
}

.seat-summary-passenger-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.seat-summary-passenger-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.seat-summary-pname {
    font-size: 16px;
    color: #212529;
    font-weight: 600;
}

.seat-summary-ptype {
    font-size: 12px;
    color: #009de0;
    font-weight: 400 !important; /* Regular font weight without bold */
}

.seat-summary-passenger-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.seat-summary-number {
    font-size: 19px;
    color: #009de0;
    font-weight: 400 !important; /* Regular font weight without bold */
    background: none;
    padding: 0;
    border: none;
}

.seat-summary-chevron {
    color: #ced4da;
    font-size: 15px;
}

/* Sticky Footer for Summary */
.seat-summary-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #102e52;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px 25px 20px;
    z-index: 100;
    gap: 12px;
}

.seat-summary-footer-left {
    flex: 1;
}

.seat-alterar-btn {
    width: 100%;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
    font-family: inherit;
    text-align: center;
}

.seat-alterar-btn:active {
    background: rgba(255, 255, 255, 0.08);
}

.seat-summary-footer-right {
    flex: 1;
}

.seat-summary-prosseguir-btn {
    width: 100%;
    background: #008a5e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
    font-family: inherit;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0, 138, 94, 0.3);
    text-align: center;
}

.seat-summary-prosseguir-btn:active {
    background: #00704c;
    transform: scale(0.98);
}

/* ==========================================================================
   BAGGAGE SELECTION SCREEN STYLES
   ========================================================================== */
.baggage-screen-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.baggage-header {
    background: #ffffff;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex-shrink: 0;
    border-bottom: 1px solid #e9ecef;
}

.baggage-header-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.baggage-title {
    font-size: 19px;
    font-weight: 600;
    color: #0b2240;
    margin: 0;
    text-align: center;
}

.baggage-home-btn {
    background: none;
    border: none;
    color: #7d8b99;
    font-size: 18px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    outline: none;
}

.baggage-back-btn {
    background: none;
    border: none;
    color: #7d8b99;
    font-size: 32px;
    font-weight: 200;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    line-height: 1;
}

.baggage-scrollable-content {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 110px;
}

.baggage-subtext {
    padding: 18px 20px 12px 20px;
    font-size: 14px;
    color: #495057;
    font-weight: 500;
    line-height: 1.4;
}

/* Tab Banner */
.baggage-tabs {
    background: #06192e;
    display: flex;
    padding: 0 15px;
    flex-shrink: 0;
}

.baggage-tab-btn {
    flex: 1;
    text-align: center;
    padding: 15px 0;
    color: #7b8f9e;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
    user-select: none;
}

.baggage-tab-btn.active {
    color: #ffffff;
}

.baggage-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background: #ffffff;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

/* Card layout */
.baggage-cards-container {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.baggage-leg-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.baggage-card {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.baggage-card-body {
    padding: 16px;
}

.baggage-passenger-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.baggage-pname {
    font-size: 15px;
    font-weight: 600;
    color: #212529;
}

.baggage-counter-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.baggage-counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #0078d4;
    background: #ffffff;
    color: #0078d4;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    outline: none;
    transition: all 0.2s ease;
}

.baggage-counter-btn:active:not(:disabled) {
    background: #e1f0fc;
}

.baggage-counter-btn:disabled {
    border-color: #dee2e6;
    color: #adb5bd;
    cursor: not-allowed;
}

.baggage-counter-icon-val {
    display: flex;
    align-items: center;
    gap: 8px;
}

.baggage-counter-icon-val i {
    color: #0078d4;
    font-size: 16px;
}

.baggage-counter-val {
    font-size: 15px;
    font-weight: 600;
    color: #212529;
    min-width: 12px;
    text-align: center;
}

.baggage-card-divider {
    border: none;
    border-top: 1px solid #e9ecef;
    margin: 14px 0;
}

.baggage-status-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.baggage-status-label {
    font-size: 11px;
    color: #868e96;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.baggage-status-val {
    font-size: 14px;
    color: #212529;
    font-weight: 500;
}

/* Repeat quantity card */
.baggage-repeat-checkbox-card {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.baggage-repeat-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    margin: 0;
    user-select: none;
}

.baggage-repeat-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.baggage-repeat-label span {
    font-size: 13px;
    color: #495057;
    line-height: 1.4;
    font-weight: 500;
}

/* Special baggage card */
.special-baggage-card {
    background: #ffffff;
    border: 1px dashed #0078d4;
    border-radius: 8px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 8px 20px 20px 20px;
    position: relative;
}

.special-baggage-sparkle {
    position: absolute;
    top: 12px;
    left: 16px;
    color: #0078d4;
    font-size: 16px;
    opacity: 0.8;
}

.special-baggage-title {
    font-size: 14px;
    font-weight: 600;
    color: #0056b3;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.special-baggage-title i.fa-circle-info {
    color: #adb5bd;
    font-size: 13px;
}

.special-baggage-desc {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 16px;
}

.special-baggage-add-btn {
    width: 100%;
    background: #0056b3;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: background-color 0.2s ease;
}

.special-baggage-add-btn:active {
    background: #004085;
}

/* Baggage Sticky Footer */
.baggage-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #06192e;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px 25px 20px;
    z-index: 100;
    gap: 12px;
}

.baggage-footer-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.baggage-footer-passenger-label {
    font-size: 12px;
    color: #7b8f9e;
    font-weight: 500;
}

.baggage-footer-price {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.baggage-prosseguir-btn {
    background: #008a5e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
    min-width: 140px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 138, 94, 0.3);
}

.baggage-prosseguir-btn:active {
    background: #00704c;
    transform: scale(0.98);
}

/* ==========================================================================
   PAYMENT PAGE CHECKOUT STYLES
   ========================================================================== */
.payment-page-body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    background: url('../images/praia.webp') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    overflow-x: hidden;
}

/* Screen 1: Experience Loading Screen */
.payment-loading-screen-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(rgba(10, 34, 64, 0.75), rgba(10, 34, 64, 0.9)), url('../images/praia.webp') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    text-align: center;
    z-index: 2000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.payment-loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.payment-circular-loader {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.15);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.payment-loader-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Screens 2, 3, 5 Containers */
.payment-selection-screen-container,
.payment-cpf-screen-container,
.payment-summary-screen-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

/* Screen 2 & 5 Header with Forest BG */
.payment-header {
    background: linear-gradient(rgba(10, 34, 64, 0.75), rgba(10, 34, 64, 0.85)), url('../images/praia.webp') no-repeat center center;
    background-size: cover;
    color: #ffffff;
    padding: 16px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    z-index: 110;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.payment-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 16px;
    width: 100%;
}

.payment-back-btn,
.payment-home-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    outline: none;
}

.payment-title {
    font-size: 19px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    flex: 1;
}

.payment-header-route {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.payment-header-route .route-iata {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.payment-header-route .route-dates {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 6px;
}

.route-details-toggle {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 20px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    margin-top: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    outline: none;
    transition: background 0.2s;
}

.route-details-toggle:active {
    background: rgba(255, 255, 255, 0.25);
}

/* Scrollable Container */
.payment-scrollable-content {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 110px;
}

/* Summary Base price box */
.payment-summary-box {
    background: #ffffff;
    border-bottom: 1px solid #dee2e6;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.payment-summary-box span {
    font-size: 14px;
    color: #495057;
    font-weight: 500;
}

.payment-summary-box strong {
    font-size: 26px;
    font-weight: 800;
    color: #0b2240;
}

/* Promo code card */
.promo-code-card {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin: 16px 20px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    transition: background 0.2s;
}

.promo-code-card:active {
    background: #f8f9fa;
}

.promo-code-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #212529;
    font-size: 14px;
    font-weight: 600;
}

.promo-icon {
    color: #0078d4;
    font-size: 16px;
}

.promo-arrow {
    color: #ced4da;
    font-size: 14px;
}

/* Accordion list */
.payment-methods-list {
    padding: 0 20px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-method-item {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    transition: border-color 0.2s ease;
}

.payment-method-item.active {
    border-color: #0078d4;
    box-shadow: 0 2px 8px rgba(0, 120, 212, 0.08);
}

.payment-method-header {
    padding: 18px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.payment-radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    flex: 1;
    margin: 0;
    user-select: none;
}

.payment-radio-label input[type="radio"] {
    display: none;
}

.custom-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #ced4da;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    font-size: 10px;
    color: transparent;
    transition: all 0.2s;
    flex-shrink: 0;
}

.payment-method-item.active .custom-radio {
    border-color: #0078d4;
    background: #0078d4;
    color: #ffffff;
}

.method-title-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.method-title-logo strong {
    font-size: 14px;
    font-weight: 600;
    color: #212529;
}

.pix-logo-icon {
    color: #008a5e;
    font-size: 18px;
}

.method-icon {
    color: #7b8f9e;
    font-size: 16px;
}

.nubank-logo-text {
    background: #8a05be;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    border-radius: 4px;
    padding: 2px 5px;
    text-transform: lowercase;
    line-height: 1;
}

.discount-badge {
    background: #e6f7f0;
    color: #008a5e;
    font-size: 11px;
    font-weight: 700;
    border-radius: 12px;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.discount-badge i {
    font-size: 10px;
}

.payment-method-details {
    padding: 0 16px 16px 16px;
    display: block;
}

.pix-info-box {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 14px 16px;
    border: 1px dashed #dee2e6;
}

.pix-info-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #008a5e;
    font-size: 13px;
    margin-bottom: 8px;
}

.pix-logo-icon-large {
    font-size: 16px;
}

.pix-info-box p {
    font-size: 12px;
    color: #495057;
    line-height: 1.5;
    margin: 0;
}

.payment-method-item.disabled {
    background: #f8f9fa;
    opacity: 0.7;
}

.payment-method-item.disabled .payment-radio-label {
    cursor: not-allowed;
}

.custom-radio.disabled {
    border-color: #dee2e6;
    background: #e9ecef;
}

.disabled-status-text {
    font-size: 12px;
    color: #868e96;
    font-weight: 500;
}

.payment-method-item .dropdown-arrow {
    color: #ced4da;
    font-size: 14px;
}

/* Credit Card Form Styles */
.card-form-box {
    padding: 4px 0 8px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.card-form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.card-form-group label {
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    letter-spacing: 0.3px;
}

.card-input {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    color: #212529;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.card-input:focus {
    border-color: #008cc9;
    box-shadow: 0 0 0 3px rgba(0, 140, 201, 0.12);
}

.card-input::placeholder {
    color: #adb5bd;
}

.card-form-row {
    display: flex;
    gap: 12px;
}

.card-form-row .card-form-group {
    flex: 1;
}

/* Card Error Modal Overlay */
.card-error-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeInOverlay 0.3s ease;
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

.card-error-modal {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    max-width: 340px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.35s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.card-error-icon {
    font-size: 56px;
    color: #dc3545;
    margin-bottom: 16px;
    animation: shakeIcon 0.5s ease 0.3s;
}

@keyframes shakeIcon {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-8px); }
    40% { transform: translateX(8px); }
    60% { transform: translateX(-5px); }
    80% { transform: translateX(5px); }
}

.card-error-title {
    font-size: 18px;
    font-weight: 700;
    color: #212529;
    margin: 0 0 10px 0;
}

.card-error-text {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0 0 22px 0;
}

.card-error-text strong {
    color: #008a5e;
}

.card-error-pix-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #008a5e;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.card-error-pix-btn:active {
    background: #00704c;
    transform: scale(0.98);
}

.card-error-pix-btn .pix-logo-icon {
    font-size: 18px;
}

/* Sticky Footer */
.payment-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #06192e;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px 25px 20px;
    z-index: 100;
    gap: 12px;
}

.payment-footer-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.payment-footer-passenger-label {
    font-size: 12px;
    color: #7b8f9e;
    font-weight: 500;
}

.payment-footer-price {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.payment-prosseguir-btn {
    background: #008a5e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
    min-width: 140px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 138, 94, 0.3);
}

.payment-prosseguir-btn:active:not(:disabled) {
    background: #00704c;
    transform: scale(0.98);
}

.payment-prosseguir-btn:disabled {
    background: #ced4da;
    color: #868e96;
    cursor: not-allowed;
    box-shadow: none;
}

/* Screen 3: CPF Select Screen */
.payment-cpf-header {
    background: #ffffff;
    padding: 16px 20px;
    border-bottom: 1px solid #e9ecef;
    flex-shrink: 0;
}

.payment-cpf-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.payment-cpf-back-btn {
    background: none;
    border: none;
    color: #0078d4;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    outline: none;
}

.payment-cpf-close-btn {
    background: none;
    border: none;
    color: #7d8b99;
    font-size: 26px;
    font-weight: 200;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    outline: none;
}

.payment-cpf-title {
    font-size: 19px;
    font-weight: 600;
    color: #0b2240;
    text-align: center;
    flex: 1;
}

.payment-cpf-content {
    padding: 24px 20px;
    flex: 1;
    overflow-y: auto;
}

.cpf-selection-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cpf-selection-card {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 18px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: border-color 0.2s;
    user-select: none;
    margin: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.cpf-selection-card input[type="radio"] {
    display: none;
}

.custom-cpf-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #ced4da;
    background: #ffffff;
    transition: all 0.2s;
    flex-shrink: 0;
}

.cpf-selection-card input[type="radio"]:checked + .custom-cpf-radio {
    border-color: #0078d4;
    background: #0078d4;
    box-shadow: inset 0 0 0 4px #ffffff;
}

.cpf-card-text {
    font-size: 14px;
    font-weight: 600;
    color: #212529;
}

/* Screen 5: Purchase Summary Breakdown Card */
.purchase-summary-card {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    overflow: hidden;
}

.purchase-summary-header {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.purchase-summary-header strong {
    font-size: 14px;
    font-weight: 600;
    color: #212529;
}

.purchase-details-link {
    font-size: 12px;
    color: #0078d4;
    font-weight: 600;
    text-decoration: none;
}

.purchase-breakdown {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #495057;
}

.breakdown-row i {
    color: #adb5bd;
    font-size: 11px;
    margin-left: 2px;
}

.breakdown-row.discount .discount-label-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.breakdown-row.discount .discount-subtext {
    font-size: 11px;
    color: #008a5e;
    font-weight: 600;
}

.breakdown-row.discount span:last-child {
    color: #008a5e;
    font-weight: 600;
}

.summary-divider {
    border: none;
    border-top: 1px solid #e9ecef;
    margin: 4px 0;
}

.breakdown-row.total {
    font-size: 15px;
    font-weight: 700;
    color: #212529;
    margin-top: 4px;
}

/* Summary selected payment details */
.payment-method-selected-box {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin: 0 20px 20px 20px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.payment-method-selected-box span {
    font-size: 13px;
    color: #495057;
}

.selected-method-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    border-radius: 6px;
    padding: 12px 14px;
    border: 1px solid #e9ecef;
}

.selected-method-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.selected-method-left i {
    color: #008a5e;
    font-size: 18px;
}

.selected-method-left strong {
    font-size: 14px;
    font-weight: 700;
    color: #212529;
}

.selected-method-left span {
    font-size: 14px;
    font-weight: 600;
    color: #008a5e;
    margin-left: 6px;
}

.edit-method-btn {
    background: none;
    border: none;
    color: #0078d4;
    font-size: 15px;
    cursor: pointer;
    padding: 0;
    outline: none;
}

/* Whatsapp Notice box */
.whatsapp-notice-card {
    margin: 0 20px 20px 20px;
    display: flex;
    gap: 10px;
}

.notice-info-icon {
    color: #adb5bd;
    font-size: 14px;
    margin-top: 3px;
}

.whatsapp-notice-card p {
    font-size: 12px;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

.whatsapp-notice-card a {
    color: #0078d4;
    text-decoration: none;
    font-weight: 600;
}

/* Agreement checkbox card */
.agreement-checkbox-card {
    margin: 0 20px 20px 20px;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 14px 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.agreement-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin: 0;
    user-select: none;
}

.agreement-label input[type="checkbox"] {
    display: none;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #ced4da;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
    position: relative;
}

.agreement-label input[type="checkbox"]:checked + .custom-checkbox {
    border-color: #0078d4;
    background: #0078d4;
}

.agreement-label input[type="checkbox"]:checked + .custom-checkbox::after {
    content: "";
    position: absolute;
    display: block;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.agreement-text {
    font-size: 13px;
    color: #495057;
    line-height: 1.4;
}

.agreement-text strong {
    color: #212529;
}

/* Summary Footer full width button */
.payment-summary-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #06192e;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px 25px 20px;
    z-index: 100;
}

.payment-finalize-btn {
    width: 100%;
    background: #008a5e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: background-color 0.2s ease, transform 0.1s ease, opacity 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 138, 94, 0.3);
    text-align: center;
}

.payment-finalize-btn:active:not(:disabled) {
    background: #00704c;
    transform: scale(0.99);
}

.payment-finalize-btn:disabled {
    background: #ced4da;
    color: #868e96;
    cursor: not-allowed;
    box-shadow: none;
}

/* ==========================================================================
   PIX PAYMENT SCREEN & BEACH LOADER OVERRIDES
   ========================================================================== */
.loading-overlay.beach-loader {
    background: linear-gradient(rgba(10, 34, 64, 0.8), rgba(10, 34, 64, 0.9)), url('../images/praia.webp') no-repeat center center;
    background-size: cover;
    backdrop-filter: blur(8px);
}

.pix-payment-screen-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.pix-payment-header {
    background: #ffffff;
    border-bottom: 1px solid #dee2e6;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    z-index: 110;
}

.pix-close-btn {
    background: none;
    border: none;
    color: #7d8b99;
    font-size: 26px;
    font-weight: 200;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    outline: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.pix-payment-title {
    font-size: 19px;
    font-weight: 600;
    color: #0b2240;
    text-align: center;
    flex: 1;
}

.pix-payment-scrollable-content {
    flex: 1;
    overflow-y: auto;
    padding: 24px 20px 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* QR Code Container */
.pix-qr-container {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}

.pix-qr-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

/* Timer Section */
.pix-timer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
    text-align: center;
}

.pix-timer-label {
    font-size: 15px;
    color: #495057;
}

.pix-timer-value {
    font-size: 18px;
    font-weight: 700;
    color: #0b2240;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Action Copy Button & Note */
.pix-action-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.pix-copy-btn {
    width: 100%;
    background: #0078d4;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
    box-shadow: 0 2px 8px rgba(0, 120, 212, 0.2);
    text-align: center;
}

.pix-copy-btn:active {
    background: #005a9e;
    transform: scale(0.99);
}

.pix-copy-btn.copied {
    background: #008a5e !important;
    box-shadow: 0 2px 8px rgba(0, 138, 94, 0.2) !important;
}

.pix-note-text {
    font-size: 13px;
    color: #6c757d;
    text-align: center;
    margin: 0;
}

/* Instructions Section */
.pix-instructions-container {
    width: 100%;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.instructions-title {
    font-size: 15px;
    color: #0b2240;
    display: block;
    margin-bottom: 12px;
}

.pix-instructions-list {
    margin: 0;
    padding-left: 20px;
    font-size: 14px;
    color: #495057;
    line-height: 1.6;
}

.pix-instructions-list li {
    margin-bottom: 8px;
}

.pix-instructions-list li:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   CPF / CONTA AZUL MODAL OVERLAYS
   ========================================================================== */
.cpf-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6); /* Soft dark overlay */
    backdrop-filter: blur(4px);
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cpf-modal-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 220px;
    text-align: center;
}

.cpf-circular-loader {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(0, 120, 212, 0.1);
    border-top: 3px solid #0078d4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.cpf-loader-text {
    font-size: 15px;
    font-weight: 600;
    color: #0b2240;
}

.cpf-error-card {
    background: #f1f5f9; /* matching the greyish background in screenshot */
    padding: 28px 24px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    box-sizing: border-box;
}

.cpf-error-icon-circle {
    width: 50px;
    height: 50px;
    border: 1.5px solid #8e3e3e; /* thin red/brown circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8e3e3e;
    font-size: 20px;
    margin-bottom: 20px;
}

.cpf-error-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 18px;
    font-weight: 500;
    color: #6b2d2d; /* dark red color matching screenshot */
    text-align: center;
    line-height: 1.25;
}

/* ==========================================================================
   BOTTOM SHEET MODAL (RESUMO DA COMPRA)
   ========================================================================== */
.bottom-sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: none;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.bottom-sheet-overlay.open {
    display: flex;
    opacity: 1;
}
.bottom-sheet-content {
    width: 100%;
    max-width: 430px; /* match container width */
    background: #ffffff;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    padding: 12px 20px 24px 20px;
    box-sizing: border-box;
    transform: translateY(100%);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.15);
}
.bottom-sheet-overlay.open .bottom-sheet-content {
    transform: translateY(0);
}
.bottom-sheet-drag-handle {
    width: 36px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    margin: 0 auto 20px auto;
}
.bottom-sheet-title {
    font-size: 19px;
    font-weight: 700;
    color: #0b2240;
    margin: 0 0 20px 0;
    text-align: left;
}
.bottom-sheet-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.bottom-sheet-row .row-label {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 400;
}
.bottom-sheet-row .row-value {
    font-size: 14px;
    color: #0b2240;
    font-weight: 600;
}
.bottom-sheet-divider {
    height: 1px;
    background: #dee2e6;
    margin: 16px 0;
}
.bottom-sheet-row.total {
    margin-bottom: 0;
}
.bottom-sheet-row.total .row-label {
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 500;
}
.bottom-sheet-row.total .row-value {
    font-size: 16px;
    color: #0b2240;
    font-weight: 700;
}
.bottom-sheet-close-btn {
    width: 100%;
    background: #00704c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 24px;
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 112, 76, 0.2);
    transition: background-color 0.2s ease, transform 0.1s ease;
    text-align: center;
}
.bottom-sheet-close-btn:active {
    background-color: #00593d;
    transform: scale(0.99);
}

/* ==========================================================================
   SEAT SELECTION CUSTOM HEADER, SUBHEADER, PILL & FOOTER
   ========================================================================== */
.seat-selection-header-custom {
    background: #ffffff;
    width: 100%;
    z-index: 210;
    border-bottom: 1px solid #e2e8f0;
}

.seat-selection-header-top-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
}

.seat-back-btn {
    background: none !important;
    border: none !important;
    color: #003057 !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 !important;
    font-family: inherit;
    box-shadow: none !important;
}

.seat-back-btn i {
    font-size: 19px;
}

.seat-info-btn-new {
    background: none !important;
    border: none !important;
    color: #7f8c8d !important;
    font-size: 20px !important;
    cursor: pointer;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
}

.seat-selection-subheader-new {
    background: #003057;
    padding: 0;
    z-index: 205;
}

.seat-selection-subheader-new .seat-selection-tabs {
    display: flex;
    justify-content: center;
    border-top: none;
}

.seat-selection-subheader-new .seat-tab-btn {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    border-bottom: none;
    transition: color 0.2s ease;
}

.seat-selection-subheader-new .seat-tab-btn.active {
    color: #ffffff;
}

.seat-selection-subheader-new .seat-tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: transparent;
    transition: background-color 0.2s ease;
}

.seat-selection-subheader-new .seat-tab-btn.active::after {
    background-color: #ffffff;
}

.seat-passenger-pill-row {
    width: 100%;
    margin: 10px auto 5px auto;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    padding: 6px 16px;
    box-sizing: border-box;
}

.seat-passenger-pill {
    background: #ffffff;
    border: 1.5px solid #ced4da;
    color: #003057;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
}

.seat-passenger-pill.active {
    background: #003057;
    border-color: #003057;
    color: #ffffff;
}

.pill-seat-badge {
    background: #0078d4;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.seat-passenger-pill.active .pill-seat-badge {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.pill-remove-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    color: #6c757d;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    margin-left: -2px;
}

.pill-remove-btn:active {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.seat-passenger-pill.active .pill-remove-btn {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.seat-passenger-pill.active .pill-remove-btn:active {
    background: rgba(255, 100, 100, 0.35);
    color: #ffffff;
}

.seat-selection-footer-new {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    z-index: 200;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
}

.seat-footer-white {
    background: #ffffff;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.seat-footer-passenger-name {
    font-size: 15px;
    font-weight: 700;
    color: #0078d4;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.seat-dots-btn {
    background: #ffffff;
    border: 1.5px solid #0078d4 !important;
    color: #0078d4 !important;
    font-size: 16px;
    font-weight: bold;
    padding: 2px 14px;
    border-radius: 8px;
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    box-sizing: border-box;
    font-family: inherit;
}

.seat-dots-btn:active {
    background-color: #f0f8ff;
}

.seat-footer-blue {
    background: #003057;
    padding: 16px 20px 22px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seat-sub-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.seat-sub-travelers-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.seat-sub-price-value {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.seat-sub-details-btn {
    background: none !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 12px !important;
    cursor: pointer;
    padding: 0 !important;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
    font-family: inherit;
    text-decoration: underline;
    box-shadow: none !important;
}

.seat-prosseguir-btn {
    background: #008a5e;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    font-family: inherit;
    box-shadow: 0 2px 8px rgba(0, 138, 94, 0.3);
}

.seat-prosseguir-btn:active:not(:disabled) {
    background: #00704c;
    transform: scale(0.98);
}

.seat-prosseguir-btn:disabled {
    background: #4a5568 !important;
    color: #a0aec0 !important;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.5;
}

/* ==========================================================================
   SEAT LEGEND MODAL
   ========================================================================== */
.legend-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.legend-modal-overlay.open {
    display: flex;
    opacity: 1;
}
.legend-modal-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    width: 90%;
    max-width: 380px;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: scale(0.9);
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.legend-modal-overlay.open .legend-modal-content {
    transform: scale(1);
}
.legend-modal-title {
    font-size: 19px;
    font-weight: 700;
    color: #0b2240;
    margin: 0 0 20px 0;
    text-align: center;
}
.legend-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.legend-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    background: #ffffff;
    min-height: 58px;
    box-sizing: border-box;
}
.legend-row-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.legend-seat-label {
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500;
}
.legend-seat-price {
    font-size: 13px;
    color: #7f8c8d;
}
.legend-seat-price strong {
    color: #0b2240;
    font-weight: 700;
}
.legend-modal-close-btn {
    background: none;
    border: none;
    color: #0078d4;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    text-align: center;
    padding: 8px 0 0 0;
    font-family: inherit;
}
.legend-modal-close-btn:active {
    opacity: 0.7;
}
.legend-modal-content .seat-btn {
    width: 34px !important;
    height: 34px !important;
}
.legend-modal-content .seat-btn .seat-icon-svg {
    width: 20px !important;
    height: 20px !important;
}

/* Custom Alert Modal */
.custom-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeInOverlay 0.3s ease;
}

.custom-alert-modal {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    max-width: 320px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.35s ease;
    font-family: 'Outfit', sans-serif;
    box-sizing: border-box;
}

.custom-alert-icon {
    font-size: 48px;
    color: #ff9800; /* Amber warning color */
    margin-bottom: 16px;
}

.custom-alert-title {
    font-size: 18px;
    font-weight: 700;
    color: #212529;
    margin: 0 0 10px 0;
}

.custom-alert-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.custom-alert-ok-btn {
    background: #008cc9; /* Azul primary blue color */
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
    outline: none;
    font-family: inherit;
    box-sizing: border-box;
}

.custom-alert-ok-btn:active {
    background: #0070a0;
}

