/* ========================================
   DESCOBRIR DESTINOS - BENETRIP
   Cores: Laranja #E87722, Azul #00A3E0
   v3.0 - Família detalhada + Multi-select
   ======================================== */

:root {
    --orange-primary: #E87722;
    --blue-secondary: #00A3E0;
    --gray-dark: #21272A;
    --gray-light: #F5F5F5;
    --white: #FFFFFF;
    --border-radius: 16px;
    --border-radius-sm: 12px;
    --border-radius-lg: 20px;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--gray-light);
    color: var(--gray-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    background: var(--white);
    padding: 24px 0;
    box-shadow: var(--shadow);
    text-align: center;
}

.logo {
    height: 48px;
    margin-bottom: 8px;
}

.tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--orange-primary);
    margin: 0;
}

/* ========================================
   MAIN CONTENT
   ======================================== */
.main-content {
    padding: 32px 0 80px;
}

/* ========================================
   FORMULÁRIO
   ======================================== */
.descobrir-form {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 32px;
}

.form-group label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 8px;
}

.hint {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

/* ========================================
   AUTOCOMPLETE INPUT
   ======================================== */
.autocomplete-wrapper {
    position: relative;
}

#origem {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E0E0E0;
    border-radius: var(--border-radius-sm);
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

#origem:focus {
    outline: none;
    border-color: var(--orange-primary);
}

.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 2px solid var(--orange-primary);
    border-top: none;
    border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
    max-height: 300px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: var(--shadow);
}

.autocomplete-item {
    padding: 12px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.autocomplete-item:hover {
    background-color: #FFF8F3;
}

.item-code {
    background-color: var(--orange-primary);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    min-width: 45px;
    text-align: center;
}

.item-details {
    flex: 1;
}

.item-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-dark);
}

.item-country {
    font-size: 12px;
    color: #666;
}

/* ========================================
   BUTTON GROUPS
   ======================================== */
.button-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.button-group-full {
    grid-template-columns: 1fr;
}

.btn-option {
    background: var(--white);
    border: 2px solid #E0E0E0;
    border-radius: var(--border-radius-sm);
    padding: 16px 12px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.btn-option .emoji {
    font-size: 28px;
}

.btn-option .text {
    font-weight: 500;
    color: var(--gray-dark);
}

.btn-option:hover {
    border-color: var(--orange-primary);
    background-color: #FFF8F3;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-option.active {
    border-color: var(--orange-primary);
    background-color: var(--orange-primary);
}

.btn-option.active .text {
    color: var(--white);
    font-weight: 600;
}

.btn-option.active small {
    color: rgba(255, 255, 255, 0.85);
}

.btn-full {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
}

/* ========================================
   MULTI-SELECT HINT
   ======================================== */
.multi-select .btn-option.active {
    background-color: var(--orange-primary);
    border-color: var(--orange-primary);
    position: relative;
}

.multi-select .btn-option.active::after {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    background: rgba(0, 0, 0, 0.15);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   NUMBER INPUT
   ======================================== */
.number-input {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: var(--gray-light);
    padding: 16px;
    border-radius: var(--border-radius-sm);
}

.btn-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--orange-primary);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-number:hover {
    background: #D66A1A;
    transform: scale(1.1);
}

.btn-number:active {
    transform: scale(0.95);
}

#num-pessoas {
    width: 80px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    border: none;
    background: transparent;
    color: var(--gray-dark);
}

/* ========================================
   FAMÍLIA: GRID ADULTOS/CRIANÇAS/BEBÊS
   ======================================== */
.familia-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.familia-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gray-light);
    border-radius: var(--border-radius-sm);
    padding: 14px 16px;
}

.familia-label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.familia-emoji {
    font-size: 28px;
}

.familia-label strong {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-dark);
    display: block;
}

.familia-label small {
    font-size: 12px;
    color: #888;
}

/* Compact number input for family rows */
.number-input-compact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-number-sm {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--orange-primary);
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-number-sm:hover {
    background: #D66A1A;
    transform: scale(1.1);
}

.btn-number-sm:active {
    transform: scale(0.95);
}

.number-input-compact input {
    width: 44px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    border: none;
    background: transparent;
    color: var(--gray-dark);
}

.familia-hint {
    text-align: center;
    font-weight: 500;
    color: var(--orange-primary) !important;
    margin-top: 8px;
}

/* ========================================
   DATAS INPUT (Flatpickr)
   ======================================== */
#datas {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E0E0E0;
    border-radius: var(--border-radius-sm);
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

#datas:focus {
    outline: none;
    border-color: var(--orange-primary);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--orange-primary) !important;
    border-color: var(--orange-primary) !important;
    color: var(--white) !important;
}

.flatpickr-day.inRange {
    background: rgba(232, 119, 34, 0.1) !important;
    border-color: rgba(232, 119, 34, 0.1) !important;
}

/* ========================================
   CURRENCY INPUT
   ======================================== */
.currency-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 18px;
    font-weight: 600;
    font-size: 16px;
    color: var(--gray-dark);
    pointer-events: none;
}

#orcamento {
    width: 100%;
    padding: 14px 18px 14px 45px;
    border: 2px solid #E0E0E0;
    border-radius: var(--border-radius-sm);
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

#orcamento:focus {
    outline: none;
    border-color: var(--orange-primary);
}

/* ========================================
   SLIDER (DISTÂNCIA)
   ======================================== */
.slider-container {
    padding: 16px;
    background: var(--gray-light);
    border-radius: var(--border-radius-sm);
}

#distancia {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #E0E0E0;
    outline: none;
    -webkit-appearance: none;
    margin: 12px 0;
}

#distancia::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--orange-primary);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

#distancia::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

#distancia::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--orange-primary);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
    margin-top: 8px;
}

.slider-value {
    text-align: center;
    margin-top: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-dark);
}

.slider-value strong {
    color: var(--orange-primary);
    font-size: 20px;
}

/* ========================================
   SUBMIT BUTTON
   ======================================== */
.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--orange-primary);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-lg);
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    margin-top: 16px;
}

.btn-submit:hover {
    background: #D66A1A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ========================================
   LOADING STATE
   ======================================== */
.loading-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 48px 24px;
    text-align: center;
    box-shadow: var(--shadow);
}

.tripinha-loading {
    width: 120px;
    height: 120px;
    margin-bottom: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.loading-card h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--orange-primary);
    font-size: 22px;
    margin-bottom: 24px;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: #E0E0E0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 16px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange-primary), var(--blue-secondary));
    width: 0%;
    transition: width 0.5s ease;
}

#loading-message {
    font-size: 15px;
    color: #666;
}

/* ========================================
   RESULTADOS
   ======================================== */
#resultados-container {
    margin-top: 32px;
}

.resultado-header {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
    text-align: center;
}

.resultado-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: var(--orange-primary);
    margin-bottom: 8px;
}

.resultado-header p {
    color: #666;
    font-size: 14px;
}

/* Top Destino */
.top-destino {
    background: linear-gradient(135deg, var(--orange-primary), #FF9A56);
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    margin-bottom: 24px;
    color: var(--white);
    box-shadow: var(--shadow-hover);
}

.top-destino .badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.top-destino h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    margin-bottom: 8px;
}

.top-destino .preco {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.top-destino .descricao {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
    opacity: 0.95;
}

.btn-ver-voos {
    display: inline-block;
    background: var(--white);
    color: var(--orange-primary);
    padding: 14px 32px;
    border-radius: var(--border-radius-lg);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-ver-voos:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Alternativas */
.alternativas-section {
    margin-bottom: 24px;
}

.alternativas-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: var(--gray-dark);
    margin-bottom: 16px;
    padding-left: 8px;
}

.alternativas-grid {
    display: grid;
    gap: 16px;
}

.destino-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.destino-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.destino-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: var(--gray-dark);
    margin-bottom: 8px;
}

.destino-card .preco {
    font-size: 16px;
    font-weight: 700;
    color: var(--orange-primary);
    margin-bottom: 12px;
}

.destino-card .descricao {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

.destino-card .btn-ver-voos {
    background: var(--orange-primary);
    color: var(--white);
    padding: 10px 24px;
    font-size: 14px;
}

/* Destino Surpresa */
.surpresa-card {
    background: linear-gradient(135deg, var(--blue-secondary), #33B5E5);
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    color: var(--white);
    box-shadow: var(--shadow-hover);
    margin-top: 24px;
}

.surpresa-card .badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.surpresa-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    margin-bottom: 8px;
}

.surpresa-card .preco {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.surpresa-card .descricao {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
    opacity: 0.95;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--white);
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid #E0E0E0;
}

.footer p {
    font-size: 14px;
    color: #666;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .descobrir-form {
        padding: 24px 16px;
    }

    .logo {
        height: 40px;
    }

    .tagline {
        font-size: 16px;
    }

    .btn-option .emoji {
        font-size: 24px;
    }

    .btn-option .text {
        font-size: 13px;
    }

    .top-destino h2 {
        font-size: 24px;
    }

    .top-destino .preco {
        font-size: 18px;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.conditional {
    transition: var(--transition);
}

.hidden {
    display: none !important;
}

/* ================================================================
   BENETRIP - CSS ADICIONAIS para cenários de orçamento
   ================================================================ */
.resultado-banner {
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
}

.resultado-banner p {
    margin: 0;
}

.banner-info {
    background: #E8F4FD;
    border-left: 4px solid #00A3E0;
    color: #1a5276;
}

.banner-aviso {
    background: #FFF3E0;
    border-left: 4px solid #E87722;
    color: #7d4e00;
}

/* Tela "Sem Resultados" */
.sem-resultados {
    text-align: center;
    padding: 40px 20px;
    max-width: 560px;
    margin: 0 auto;
}

.sem-resultados .tripinha-triste {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    opacity: 0.9;
}

.sem-resultados h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #21272A;
    margin-bottom: 12px;
}

.sem-resultados-msg {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 28px;
}

.sem-resultados-dicas {
    background: #F8F9FA;
    border-radius: 12px;
    padding: 20px 24px;
    text-align: left;
    margin-bottom: 28px;
}

.sem-resultados-dicas h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #21272A;
    margin: 0 0 14px 0;
}

.sem-resultados-dicas .dica {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #444;
    padding: 8px 0;
    line-height: 1.5;
    border-bottom: 1px solid #eee;
}

.sem-resultados-dicas .dica:last-child {
    border-bottom: none;
}

.btn-tentar-novamente {
    display: inline-block;
    margin-top: 8px;
}

/* ================================================================
   ESTILOS ENRIQUECIDOS v2.1+
   ================================================================ */

/* Resumo de critérios */
.criterios-resumo {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 20px 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--orange-primary);
}

.criterios-titulo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--gray-dark);
    margin-bottom: 16px;
}

.criterios-icon {
    font-size: 20px;
}

.criterios-grid {
    display: grid;
    gap: 10px;
}

.criterio-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 12px;
    background: var(--gray-light);
    border-radius: 10px;
}

.criterio-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
}

.criterio-valor {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-dark);
}

@media (min-width: 480px) {
    .criterios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .criterio-item:last-child {
        grid-column: 1 / -1;
    }
}

/* Subtítulo dos resultados */
.resultado-subtitulo {
    font-size: 13px;
    color: #999;
    margin-top: 4px;
}

/* Comentário contextual */
.destino-comentario {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    margin: 12px 0;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    border-left: 3px solid rgba(255, 255, 255, 0.4);
}

.destino-card .destino-comentario {
    color: #444;
    background: var(--gray-light);
    border-left-color: var(--orange-primary);
}

/* Dica prática */
.destino-dica {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
    margin: 8px 0 16px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.destino-dica .dica-icon {
    flex-shrink: 0;
    font-size: 16px;
}

.destino-card .destino-dica {
    color: #555;
    background: #FFF8F0;
    border: 1px solid #FFE8D0;
}

/* Custo estimado total */
.custo-estimado {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
    margin: 8px 0 4px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 13px;
}

.custo-label {
    opacity: 0.8;
}

.custo-valor {
    font-weight: 700;
    font-size: 15px;
}

.custo-detalhe {
    font-size: 11px;
    opacity: 0.7;
}

.destino-card .custo-estimado {
    background: #F0F7FF;
    color: var(--gray-dark);
    border: 1px solid #D0E8FF;
}

.destino-card .custo-label {
    color: #666;
}

.destino-card .custo-valor {
    color: var(--blue-secondary);
}

.destino-card .custo-detalhe {
    color: #888;
}

/* Badges de confiabilidade */
.fonte-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.fonte-alta {
    background: rgba(255, 215, 0, 0.25);
    color: #FFF;
}

.fonte-media {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.destino-card .fonte-alta {
    background: #FFF8E1;
    color: #B8860B;
}

.destino-card .fonte-media {
    background: #E8F5E9;
    color: #2E7D32;
}

/* Preço label */
.preco-label {
    font-size: 12px;
    opacity: 0.75;
    margin-top: -4px;
    margin-bottom: 8px;
}

.destino-card .preco-label {
    color: #888;
}

/* Flight info */
.flight-info {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 8px;
}

.destino-card .flight-info {
    color: #666;
}

/* Botão buscar novamente */
.buscar-novamente-section {
    text-align: center;
    margin-top: 32px;
    padding: 28px 24px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.buscar-novamente-texto {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #666;
    margin-bottom: 16px;
}

.btn-buscar-novamente {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--orange-primary);
    border: 2px solid var(--orange-primary);
    border-radius: var(--border-radius-lg);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-buscar-novamente:hover {
    background: var(--orange-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-buscar-novamente:active {
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 480px) {
    .criterios-resumo {
        padding: 16px 18px;
    }

    .criterio-item {
        padding: 6px 10px;
    }

    .criterio-valor {
        font-size: 13px;
    }

    .destino-comentario {
        font-size: 13px;
        padding: 10px 12px;
    }

    .destino-dica {
        font-size: 12px;
        padding: 8px 12px;
    }

    .custo-estimado {
        flex-direction: column;
        gap: 2px;
    }

    .btn-buscar-novamente {
        width: 100%;
        padding: 14px 20px;
    }

    .familia-item {
        padding: 10px 12px;
    }

    .familia-emoji {
        font-size: 24px;
    }

    .familia-label strong {
        font-size: 14px;
    }
}

.banner-poucos-resultados {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFF8E1 100%);
    border: 1px solid #FFB74D;
    border-left: 4px solid #E87722;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.banner-poucos-resultados p {
    color: #4E342E;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    background: linear-gradient(135deg, var(--orange-primary) 0%, #F59E42 100%);
    padding: 40px 0 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%; 
    right: -20%;
    width: 400px; 
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-avatar {
    width: 80px; 
    height: 80px;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.hero-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px; 
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.hero-section p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 540px;
    margin: 0 auto;
}

/* Efeito de sobreposição do formulário por cima do Hero */
#form-container {
    margin-top: -32px;
    position: relative;
    z-index: 10;
}

/* Remover o padding superior do main-content para colar no Hero */
.main-content {
    padding: 0 0 80px; /* Substitui o '32px 0 80px' anterior */
}

.autocomplete-city-group {
    background: #FFF8F0;
    border-left: 3px solid #E87722;
}

.escopo-group {
    grid-template-columns: 1fr;
    gap: 10px;
}

/* Em telas maiores: "tanto faz" full-width, nacional e internacional lado a lado */
@media (min-width: 480px) {
    .escopo-group {
        grid-template-columns: repeat(2, 1fr);
    }
    .escopo-group .btn-option:first-child {
        grid-column: 1 / -1;
    }
}
