/* =============================
   CONTATO - FORMULÁRIO MODERNO
   ============================= */
.page-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 48px 0 24px 0;
    text-align: center;
    margin-bottom: 0;
}
.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.page-header p {
    font-size: 1.2rem;
    color: #e0ffe0;
}
.contact-section {
    background: var(--bg-light);
    padding: 48px 0;
}
.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}
.contact-info-box, .contact-form-box {
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    padding: 32px 28px;
    min-width: 320px;
    max-width: 400px;
    flex: 1 1 340px;
}
.contact-info-box h2, .contact-form-box h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--primary-color);
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}
.contact-icon {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 10px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.contact-text h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--primary-color);
}
.contact-text p, .contact-text a {
    font-size: 0.97rem;
    color: var(--text-dark);
    text-decoration: none;
}
.contact-form-box form {
    margin-top: 10px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
    display: block;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: border 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}
.form-row {
    display: flex;
    gap: 16px;
}
.form-row .form-group {
    flex: 1 1 0;
    margin-bottom: 0;
}
.btn-submit-large {
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 14px 0;
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: background 0.2s, transform 0.2s;
}
.btn-submit-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px) scale(1.01);
}
.alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 18px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success {
    background: #e6f9ed;
    color: #1a7f4c;
    border: 1.5px solid #b2e2c7;
}
.alert-error {
    background: #fff0f0;
    color: #c00;
    border: 1.5px solid #f5b5b5;
}
@media (max-width: 900px) {
    .contact-layout {
        flex-direction: column;
        gap: 24px;
    }
    .contact-info-box, .contact-form-box {
        max-width: 100%;
    }
}
/* ===================================
   GRUPO FR COURA - SEMINOVOS
   Design inspirado na Localiza Seminovos
   =================================== */

:root {
    --primary-color: #00a859;
    --primary-dark: #008a47;
    --secondary-color: #f8b500;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --border-color: #e0e0e0;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #00a859 0%, #00c46a 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
}

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

/* ===================================
   NAVBAR
   =================================== */

.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo h1 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.logo span {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.navbar-links {
    display: flex;
    gap: 30px;
}

.navbar-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.navbar-actions {
    display: flex;
    gap: 15px;
}

.btn-phone, .btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-phone {
    background: var(--bg-light);
    color: var(--text-dark);
}

.btn-phone:hover {
    background: var(--border-color);
}

.btn-whatsapp {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

/* ===================================
   HERO SECTION & BUSCA PRINCIPAL
   =================================== */

.hero-banner {
    position: relative;
    background: var(--gradient-primary);
    padding: 60px 0;
    color: var(--white);
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.busca-principal {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 20px;
    border-radius: 50px;
    margin-top: -135px;
    margin-bottom: 42px;
}

.busca-container {
     display: flex;
    gap: 12px;
    align-items: center;
    background: var(--white);
    border-radius: 50px;
    padding: 12px 20px;
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15); */
    border: solid 1px #b6b6b6;
}

.busca-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.busca-input-group i {
    color: var(--primary-color);
    font-size: 18px;
}

.busca-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: inherit;
    color: var(--text-dark);
}

.busca-input::placeholder {
    color: #999;
}

.cidade-select-group {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    position: relative;
}

.cidade-select-group i {
    color: var(--primary-color);
    font-size: 16px;
    pointer-events: none;
}

/* Custom Select */
.custom-select-wrapper {
    position: relative;
    flex: 1;
}

.custom-select-btn {
    background: transparent;
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    color: var(--text-dark);
    cursor: pointer;
    padding: 8px 20px 8px 0;
    position: relative;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.custom-select-btn:hover {
    color: var(--primary-color);
}

.custom-select-btn::after {
    content: '▼';
    position: absolute;
    right: 0;
    font-size: 10px;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.custom-select-btn.active::after {
    transform: rotate(180deg);
}

.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 200;
    max-height: 400px;
    overflow-y: auto;
    min-width: 280px;
}

.custom-select-dropdown.active {
    display: block;
}

.dropdown-header {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--bg-light);
    border-radius: 8px 8px 0 0;
}

.dropdown-header i {
    color: var(--primary-color);
    font-size: 18px;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 8px 0;
}

.dropdown-section {
    padding: 12px 0;
}

.dropdown-section h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    padding: 8px 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-search {
    padding: 8px 12px;
}

.dropdown-search-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.dropdown-search-input:focus {
    border-color: var(--primary-color);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    font-size: 14px;
}

.dropdown-item:hover {
    background: #f0f9f6;
    color: var(--primary-color);
    padding-left: 20px;
}

.dropdown-item i {
    font-size: 14px;
    color: var(--primary-color);
}

.dropdown-all-cities {
    max-height: 200px;
    overflow-y: auto;
}

.btn-pesquisar {
    padding: 12px 32px;
    background: #011174;
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-pesquisar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(1, 17, 116, 0.3);
}

/* ===================================
   PAINEL DE FILTROS
   =================================== */

.filtros-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    display: none;
    max-height: 600px;
    overflow-y: auto;
    width: 100%;
    z-index: 100;
}

.filtros-panel.active {
    display: block;
}

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

.filtros-section h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filtros-section h3 i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Filtros Rápidos - Buttons */
.filtros-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filtro-btn {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    text-align: left;
    color: var(--text-dark);
}

.filtro-btn:hover {
    border-color: var(--primary-color);
    background: #f0f9f6;
}

.filtro-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.filtro-oferta {
    background: #fff8e1;
    border-color: var(--secondary-color);
    color: var(--text-dark);
}

.filtro-oferta:hover {
    background: #ffe0b2;
    border-color: var(--secondary-color);
}

.filtro-oferta i {
    margin-right: 5px;
}

/* Carroceria Grid */
.carroceria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.carroceria-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--white);
}

.carroceria-option input {
    display: none;
}

.carroceria-option:hover {
    border-color: var(--primary-color);
    background: #f0f9f6;
}

.carroceria-option input:checked ~ .carroceria-icon {
    color: var(--primary-color);
}

.carroceria-option input:checked ~ span {
    color: var(--primary-color);
}

.carroceria-icon {
    font-size: 28px;
    color: #999;
    transition: color 0.3s;
}

.carroceria-option span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

/* Marcas Grid */
.marcas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.marca-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 500;
}

.marca-option input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.marca-option:hover {
    border-color: var(--primary-color);
    background: #f0f9f6;
}

/* Modelos List */
.modelos-list {
    list-style: none;
}

.modelos-list li {
    margin-bottom: 10px;
}

.modelos-list a {
    display: block;
    padding: 10px 12px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 6px;
    border-left: 3px solid transparent;
    transition: all 0.3s;
    font-size: 14px;
}

.modelos-list a:hover {
    background: #f0f9f6;
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

/* ===================================
   SEARCH BOX (LEGACY)
   =================================== */

.search-box {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.search-field label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.search-field label i {
    color: var(--primary-color);
    margin-right: 5px;
}

.search-field select,
.search-field input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-search {
    width: 100%;
    padding: 15px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   SECTIONS
   =================================== */

.categories,
.featured-vehicles,
.benefits,
.price-ranges,
.brands,
.cta-section {
    padding: 60px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.btn-view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s;
}

.btn-view-all:hover {
    gap: 12px;
}

/* ===================================
   CATEGORIES
   =================================== */

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.category-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.category-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.category-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* ===================================
   VEHICLE CARDS
   =================================== */

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 6px;
}

.vehicle-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Seção Veículos em Destaque */
.veiculos-destaque {
    padding: 60px 0;
    background: var(--white);
}

.destaque-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.link-ver-todos {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s;
}

.link-ver-todos:hover {
    gap: 12px;
}

.grid-veiculos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.veiculo-card-home {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.veiculo-card-home:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.veiculo-imagem-wrapper {
    position: relative;
    display: block;
    width: 100%;
    height: 200px;
    background: var(--bg-light);
    overflow: hidden;
}

.veiculo-imagem-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.veiculo-card-home:hover .veiculo-imagem-wrapper img {
    transform: scale(1.05);
}

.veiculo-info-home {
    padding: 20px;
}

.veiculo-info-home h3 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
}

.veiculo-info-home h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.veiculo-info-home h3 a:hover {
    color: var(--primary-color);
}

.versao {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 15px;
}

.specs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-light);
}

.specs span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.specs i {
    color: var(--primary-color);
}

.precos {
    margin-bottom: 15px;
}

.preco-antigo {
    display: block;
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 13px;
    margin-bottom: 5px;
}

.preco-atual {
    display: block;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 800;
}

.btn-detalhes-veiculo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-detalhes-veiculo:hover {
    gap: 12px;
    box-shadow: var(--shadow-md);
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.vehicle-image {
    position: relative;
    display: block;
    overflow: hidden;
    height: 200px;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.05);
}

.badge-oferta {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.vehicle-info {
    padding: 20px;
}

.vehicle-title a {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.vehicle-title a:hover {
    color: var(--primary-color);
}

.vehicle-version {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.vehicle-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.vehicle-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
    font-size: 13px;
}

.vehicle-specs i {
    color: var(--primary-color);
}

.vehicle-price {
    margin-bottom: 15px;
}

.price-old {
    display: block;
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 14px;
    margin-bottom: 5px;
}

.price-current {
    display: block;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 800;
}

.btn-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-details:hover {
    gap: 12px;
}

/* ===================================
   BENEFITS
   =================================== */

.benefits {
    background: var(--bg-light);
}

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

.benefit-card {
    text-align: center;
    padding: 30px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================================
   PRICE RANGES & BRANDS
   =================================== */

.price-grid,
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.price-card,
.brand-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
}

.price-card:hover,
.brand-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.price-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.price-card h3,
.brand-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.brand-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: var(--bg-light);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: #fff;
    color: var(--text-dark);
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
}

/* Footer Top Section */
.footer-top {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo-section h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.footer-logo-section p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.footer-cnpj {
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

.footer-menu-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-menu h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-menu h4 i {
    color: var(--primary-color);
    font-size: 16px;
}

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

.footer-menu ul li {
    margin-bottom: 12px;
}

.footer-menu ul a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.footer-menu ul a i {
    font-size: 12px;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: var(--border-color);
    margin: 40px 0;
}

/* Footer Brands */
.footer-brands {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand-item {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
}

.footer-brand-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.footer-brand-item i {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.footer-brand-item h5 {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.footer-legal {
    flex: 1;
}

.footer-legal p {
    font-size: 12px;
    color: #999;
    margin-bottom: 12px;
}

.footer-legal ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.footer-legal ul a {
    font-size: 12px;
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 18px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Saiba Mais Dropdown */
.footer-saiba-mais {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.saiba-mais-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    transition: all 0.3s;
}

.saiba-mais-btn:hover {
    color: var(--primary-color);
}

.saiba-mais-btn i {
    transition: transform 0.3s;
}

.saiba-mais-btn:hover i {
    transform: rotate(180deg);
}

/* ===================================
   FLOATING ELEMENTS
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-menu-group {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-brands {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal ul {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .navbar-links,
    .navbar-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }

    .busca-container {
        flex-wrap: wrap;
        border-radius: 12px;
    }

    .cidade-select-group {
        border-left: none;
        border-right: none;
        order: 3;
        width: 100%;
        padding: 10px 0;
        margin-top: 10px;
    }

    .btn-pesquisar {
        order: 4;
        width: 100%;
        margin-top: 10px;
    }

    .filtros-content {
        grid-template-columns: 1fr;
    }

    .carroceria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .marcas-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    .search-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    transition: right 0.3s;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 20px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 30px;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.3s;
}

.mobile-menu-links a:hover {
    background: var(--bg-light);
}
form#formBuscaHeader {
    border-radius: 50px;
    border: solid 1px #bfbfbf;
    padding: 7px;
    max-width: 36%;
}
.inputbuscaheader{
    border: 0px;
    background: transparent !important;
}
.inputcidadeheader{
    border: 0px;
    background: transparent !important;
}
.buttonpesquisaheader{
    border-radius: 50px !important;
    width: 39px !important;
    height: 37px !important;
    padding: 3px !important;
}
.borderpesquisa{
    border-radius: 50px;
    border: solid 2px #efefef;
    padding: 2px;
}
.borderpesquisabanner{
    border-radius: 50px;
}