/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffffff;
    --primary-dark: #e5e5e5;
    --secondary-color: #888888;
    --accent-color: #666666;
    --dark-bg: #000000;
    --dark-card: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #999999;
    --accent-gradient: linear-gradient(135deg, #333333 0%, #666666 100%);
    --spacing: 80px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 24px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-link-icon::after {
    display: none;
}

.nav-link-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.nav-link-icon svg {
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
}

/* Social Icons na direita */
.hero-social {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(-5px);
}

.hero-social-link svg {
    width: 22px;
    height: 22px;
    color: var(--text-light);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease;
}

.hero-content-wrapper {
    max-width: 900px;
    text-align: center;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 400;
    margin-bottom: 48px;
    color: var(--text-light);
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -2px;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 48px;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.6;
    text-align: left;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.btn-hero {
    background: var(--text-light);
    color: #000;
    font-weight: 700;
    padding: 18px 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-light);
    border-radius: 50px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text-light);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(16px); opacity: 0; }
}

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

/* Section Styles */
section {
    padding: var(--spacing) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Quem Somos Section */
.quem-somos {
    background: var(--dark-bg);
}

.quem-somos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quem-somos-text .lead {
    font-size: 1.25rem;
    margin-bottom: 24px;
    color: var(--text-light);
    font-weight: 500;
}

.quem-somos-text p {
    margin-bottom: 20px;
    color: var(--text-gray);
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--dark-bg);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    color: var(--text-gray);
    font-size: 0.875rem;
}

.quem-somos-image .image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.quem-somos-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.quem-somos-image:hover img {
    transform: scale(1.05);
}

/* Confessional Section */
.confessional {
    background: var(--dark-card);
    position: relative;
}

.confessional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.confessional-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.confessional-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.confessional-icon svg {
    width: 40px;
    height: 40px;
    color: var(--text-light);
}

.confessional-text {
    margin-bottom: 40px;
}

.confessional-text .lead {
    font-size: 1.25rem;
    margin-bottom: 24px;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.8;
}

.confessional-text p {
    margin-bottom: 20px;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

.confessional-cta {
    margin-top: 40px;
}

/* Serviços Section */
.servicos {
    background: var(--dark-bg);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.servico-card {
    background: var(--dark-card);
    padding: 40px 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.servico-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.servico-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.servico-icon svg {
    width: 32px;
    height: 32px;
    color: var(--text-light);
}

.servico-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-light);
}

.servico-description {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Cotação Section */
.cotacao {
    background: var(--dark-card);
}

.cotacao-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.cotacao-form {
    background: var(--dark-bg);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Trip type bar */
.trip-type-bar {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 8px;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.radio-label span {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Horizontal search row */
.search-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 6px;
    font-weight: 500;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 12px 14px;
    background: var(--dark-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    height: 48px;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* White calendar icons for date inputs */
.form-field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* Passageiros dropdown */
.passageiros-field {
    position: relative;
}

.passageiros-dropdown {
    position: relative;
}

.passageiros-button {
    width: 100%;
    height: 48px;
    padding: 12px 14px;
    background: var(--dark-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.passageiros-button:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.passageiros-button svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.passageiros-dropdown.active .passageiros-button svg {
    transform: rotate(180deg);
}

.passageiros-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    z-index: 100;
    display: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    min-width: 320px;
}

.passageiros-dropdown.active .passageiros-menu {
    display: block;
}

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

.passageiro-group:last-of-type {
    border-bottom: none;
}

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

.passageiro-label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
}

.passageiro-desc {
    color: var(--text-gray);
    font-size: 0.8rem;
}

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

.counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.counter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.counter-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.counter-value {
    min-width: 24px;
    text-align: center;
    color: var(--text-light);
    font-weight: 500;
}

.classe-select {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.classe-select label {
    display: block;
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.classe-select select {
    width: 100%;
    padding: 10px 12px;
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
}

.btn-aplicar {
    width: 100%;
    margin-top: 16px;
    padding: 10px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-aplicar:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Checkbox row */
.checkbox-row {
    display: flex;
    gap: 24px;
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-label span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Contact row */
.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 24px;
}

/* Submit button */
.btn-cotacao {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.05rem;
    padding: 16px 40px;
}

.btn-cotacao:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-cotacao svg {
    flex-shrink: 0;
}

/* Contato Section */
.contato {
    background: var(--dark-card);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contato-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.contato-info > p {
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--text-light);
}

.info-item h4 {
    color: var(--text-light);
    margin-bottom: 4px;
}

.info-item p {
    color: var(--text-gray);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: var(--dark-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.social-link svg {
    width: 24px;
    height: 24px;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.social-link:hover svg {
    color: var(--primary-color);
}

/* Form Styles */
.contato-form {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--dark-card);
    border: 2px solid transparent;
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 16px;
}

.footer-logo p {
    color: var(--text-gray);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    color: var(--text-gray);
    margin-bottom: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    :root {
        --spacing: 60px;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .nav-link-icon {
        justify-content: flex-start;
        border-radius: 8px;
        padding: 12px;
    }

    .quem-somos-content,
    .contato-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .cotacao-form {
        padding: 30px 20px;
    }

    .hero-content {
        padding-left: 40px;
        padding-right: 80px;
    }

    .hero-social {
        right: 20px;
        gap: 16px;
    }

    .hero-social-link {
        width: 40px;
        height: 40px;
    }

    .hero-social-link svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .hero-content {
        padding-left: 24px;
        padding-right: 24px;
        text-align: center;
    }

    .hero-content-wrapper {
        max-width: 100%;
    }

    .hero-title {
        text-align: center;
        font-size: clamp(2.5rem, 10vw, 4rem);
        letter-spacing: -1px;
        white-space: normal;
    }

    .hero-subtitle {
        text-align: center;
        margin-bottom: 32px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-social {
        display: none;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
    }

    .contato-form {
        padding: 30px 20px;
    }

    /* Otimização do formulário de cotação para mobile */
    .cotacao-form {
        padding: 24px 16px;
    }

    .trip-type-bar {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }

    .radio-label {
        width: 100%;
        padding: 12px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        border: 2px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .radio-label input[type="radio"] {
        width: 20px;
        height: 20px;
    }

    .radio-label span {
        font-size: 1rem;
    }

    .radio-label:has(input:checked) {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--primary-color);
    }

    .search-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-field label {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .form-field input,
    .form-field select {
        padding: 16px;
        font-size: 1rem;
        height: 56px;
    }

    .passageiros-button {
        padding: 16px;
        height: 56px;
        font-size: 1rem;
    }

    .passageiros-menu {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 16px 16px 0 0;
        max-height: 80vh;
        overflow-y: auto;
        min-width: auto;
    }

    .passageiro-group {
        padding: 16px 0;
    }

    .passageiro-label {
        font-size: 1.05rem;
    }

    .passageiro-desc {
        font-size: 0.9rem;
    }

    .counter-btn {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    .counter-value {
        min-width: 32px;
        font-size: 1.1rem;
    }

    .classe-select select {
        padding: 14px;
        font-size: 1rem;
    }

    .btn-aplicar {
        padding: 14px;
        font-size: 1.05rem;
    }

    .checkbox-row {
        flex-direction: column;
        gap: 12px;
    }

    .checkbox-label {
        width: 100%;
        padding: 12px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
    }

    .checkbox-label input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }

    .checkbox-label span {
        font-size: 1rem;
    }

    .contact-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .btn-cotacao {
        font-size: 1.1rem;
        padding: 18px 32px;
    }
}