/* ===== RESET E CONFIGURAÇÕES GERAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #F5F0E8;
    color: #1A1A1A;
}

:root {
    --cor-azul-escuro: #0A1628;
    --cor-azul-medio: #1A2A4A;
    --cor-laranja: #E87A20;
    --cor-laranja-escuro: #D06A18;
    --cor-bege-claro: #F5F0E8;
    --cor-bege: #E8D5B7;
    --cor-branco: #FFFFFF;
    --cor-grafite: #2C2C2C;
    --cor-grafite-claro: #4A4A4A;
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--cor-azul-escuro);
}

.section-title span {
    color: var(--cor-laranja);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--cor-laranja);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--cor-grafite-claro);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ===== HEADER ===== */
header {
    background: var(--cor-azul-escuro);
    color: white;
    padding: 0.6rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--cor-laranja);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-texto {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-simbolo {
    flex-shrink: 0;
}

.logo-simbolo img {
    display: block;
    background: transparent !important;
    border-radius: 0 !important;
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.logo-texto-info {
    text-align: left;
}

.logo-texto-info h1 {
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 2px;
    color: var(--cor-branco);
}

.logo-texto-info h1 span {
    color: var(--cor-laranja);
    font-weight: 900;
}

.logo-texto-info p {
    font-size: 0.7rem;
    letter-spacing: 5px;
    font-weight: 300;
    color: rgb(255, 255, 255); /* mesma cor do VEÍCULOS */
}

.logo-texto-info small {
    font-size: 0.5rem;
    letter-spacing: 2px;
    display: block;
    font-weight: 300;
    color: rgb(255, 255, 255); /* igual também */
}
nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

nav ul li a {
    color: var(--cor-branco);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
    padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--cor-laranja);
    border-bottom-color: var(--cor-laranja);
}

.menu-hamburguer {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--cor-branco);
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #0A1628 0%, #1A2A4A 50%, #0A1628 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--cor-laranja);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 122, 32, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-simbolo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.hero-simbolo img {
    display: block;
    background: transparent !important;
    border-radius: 0 !important;
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.hero-logo {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.hero-logo h2 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--cor-branco);
    text-shadow: 0 0 40px rgba(232, 122, 32, 0.1);
}

.hero-logo h2 span {
    color: var(--cor-laranja);
    font-weight: 900;
    text-shadow: 0 0 40px rgba(232, 122, 32, 0.2);
}

.hero-sub {
    font-size: 3.6rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--cor-branco);
    text-transform: uppercase;
    margin-top: 5px;
    line-height: 1;
}

.hero-slogan {
    font-size: 1.1rem;
    letter-spacing: 5px;
    color: var(--cor-laranja);
    font-weight: 300;
    margin-top: 0.3rem;
    text-shadow: 0 0 30px rgba(232, 122, 32, 0.1);
}

.hero-descricao {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
    color: #ccc;
}

.btn-hero {
    display: inline-block;
    background: var(--cor-laranja);
    color: var(--cor-branco);
    padding: 0.7rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 25px rgba(232, 122, 32, 0.3);
    position: relative;
    z-index: 1;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 35px rgba(232, 122, 32, 0.5);
    background: var(--cor-laranja-escuro);
}

/* ===== FILTROS ===== */
.filtros {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filtros select {
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--cor-bege);
    border-radius: 8px;
    font-size: 0.9rem;
    background: var(--cor-branco);
    color: var(--cor-azul-escuro);
    cursor: pointer;
    transition: border-color 0.3s;
    min-width: 170px;
}

.filtros select:focus {
    outline: none;
    border-color: var(--cor-laranja);
}

.filtros select option {
    background: var(--cor-branco);
    color: var(--cor-azul-escuro);
}

.filtros button {
    padding: 0.6rem 1.5rem;
    background: var(--cor-azul-escuro);
    color: var(--cor-laranja);
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 700;
}

.filtros button:hover {
    background: var(--cor-azul-medio);
    color: var(--cor-branco);
}

/* ===== GRID DE CARROS ===== */
.carros {
    padding: 2.5rem 0;
    background: var(--cor-bege-claro);
}

.grid-carros {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* ===== CARDS ===== */
.card-carro {
    background: var(--cor-branco);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: 1px solid var(--cor-bege);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-carro:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(232, 122, 32, 0.15);
}

.card-carro .imagem {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #e8e0d5;
    display: block;
    flex-shrink: 0;
}

.card-carro .info {
    padding: 1rem 1.2rem 0.5rem;
    flex: 1;
}

.card-carro .info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--cor-azul-escuro);
    font-weight: 700;
    text-align: center;
}

/* ===== DETALHES DO VEÍCULO ===== */
.detalhes-veiculo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem 1rem;
    margin-bottom: 0.8rem;
    background: #f8f4ee;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
}

.detalhe-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
}

.detalhe-label {
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detalhe-value {
    color: var(--cor-azul-escuro);
    font-weight: 600;
}

/* ===== ACESSÓRIOS ===== */
.acessorios-lista {
    margin: 0.5rem 0 0.8rem;
}

.acessorios-titulo {
    font-size: 0.7rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.3rem;
}

.acessorios-lista ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.1rem 0.5rem;
    padding: 0;
    margin: 0;
}

.acessorios-lista ul li {
    font-size: 0.6rem;
    color: var(--cor-grafite);
    padding: 0.1rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.acessorios-lista ul li i {
    color: var(--cor-laranja);
    font-size: 0.5rem;
    margin-right: 3px;
}

.acessorios-lista ul li.mais-acessorios {
    color: var(--cor-laranja);
    font-weight: 700;
    font-size: 0.7rem;
}

/* ===== PREÇO E ANO ===== */
.preco-ano {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--cor-bege);
}

.preco-ano .preco {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cor-laranja);
}

.preco-ano .ano {
    font-size: 0.8rem;
    color: #888;
    font-weight: 600;
}

/* ===== BOTÕES SOCIAIS DIRETO NO CARD ===== */
.social-buttons-card {
    display: flex;
    gap: 0.3rem;
    padding: 0.25rem 1rem 0.8rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.social-buttons-card a {
    flex: 1;
    min-width: 30px;
    text-align: center;
    padding: 0.25rem 0.15rem;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 600;
    transition: transform 0.3s;
}

.social-buttons-card a:hover {
    transform: scale(1.05);
}

.social-buttons-card .btn-whatsapp { background: #25d366; }
.social-buttons-card .btn-instagram { background: #e4405f; }
.social-buttons-card .btn-facebook { background: #1877f2; }
.social-buttons-card .btn-tiktok { background: #000000; }
.social-buttons-card .btn-youtube { background: #ff0000; }

.social-buttons-card .btn-tiktok:hover { background: #25d366; }
.social-buttons-card .btn-youtube:hover { background: #cc0000; }

/* ===== CONTATO ===== */
.contato {
    padding: 3rem 0;
    background: var(--cor-branco);
    border-top: 1px solid var(--cor-bege);
    border-bottom: 1px solid var(--cor-bege);
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contato-info .info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.contato-info .info-item i {
    font-size: 1.3rem;
    color: var(--cor-laranja);
    width: 35px;
}

.contato-info .info-item p {
    color: var(--cor-grafite-claro);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-btn:hover {
    transform: scale(1.1);
}

.social-btn.whatsapp { background: #25d366; }
.social-btn.instagram { background: #e4405f; }
.social-btn.facebook { background: #1877f2; }
.social-btn.tiktok { background: #000000; }
.social-btn.youtube { background: #ff0000; }

.social-btn.tiktok:hover { background: #25d366; }
.social-btn.youtube:hover { background: #cc0000; }

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contato-form input,
.contato-form textarea {
    padding: 0.7rem;
    border: 2px solid var(--cor-bege);
    border-radius: 8px;
    font-size: 0.95rem;
    background: var(--cor-bege-claro);
    color: var(--cor-azul-escuro);
    transition: border-color 0.3s;
}

.contato-form input:focus,
.contato-form textarea:focus {
    outline: none;
    border-color: var(--cor-laranja);
}

.contato-form input::placeholder,
.contato-form textarea::placeholder {
    color: #999;
}

.contato-form button {
    background: var(--cor-azul-escuro);
    color: var(--cor-laranja);
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.contato-form button:hover {
    background: var(--cor-azul-medio);
    color: var(--cor-branco);
}

/* ===== LOCALIZAÇÃO ===== */
.localizacao {
    padding: 3rem 0;
    background: var(--cor-bege-claro);
}

.mapa-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--cor-bege);
}

.endereco {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--cor-grafite-claro);
}

.endereco i {
    color: var(--cor-laranja);
    font-size: 1.3rem;
}

/* ===== RODAPÉ ===== */
footer {
    background: var(--cor-azul-escuro);
    color: var(--cor-bege);
    padding: 1.5rem 0 0.8rem;
    text-align: center;
    border-top: 3px solid var(--cor-laranja);
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-simbolo {
    flex-shrink: 0;
}

.footer-simbolo img {
    display: block;
    background: transparent !important;
    border-radius: 0 !important;
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.footer-logo h3 {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--cor-branco);
}

.footer-logo h3 span {
    color: var(--cor-laranja);
}

.footer-logo p {
    font-size: 0.6rem;
    letter-spacing: 4px;
    opacity: 0.7;
    color: var(--cor-bege);
}

.footer-logo small {
    font-size: 0.45rem;
    letter-spacing: 2px;
    color: var(--cor-bege);
    opacity: 0.6;
    display: block;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    color: var(--cor-bege);
    font-size: 1.3rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--cor-laranja);
}

.footer-bottom {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.7rem;
    opacity: 0.6;
    color: var(--cor-bege);
}

/* ===== GALERIA OVERLAY ===== */
.galeria-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.galeria-container {
    background: var(--cor-branco);
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
    border: 1px solid var(--cor-laranja);
    display: flex;
    flex-direction: column;
}

.galeria-container h2 {
    color: var(--cor-azul-escuro);
    margin: 0.5rem 1.5rem;
    font-size: 1.3rem;
}

.info-carro-galeria {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.2rem 1.5rem;
    margin: 0.5rem 1.5rem 0.8rem;
    padding: 0.8rem 1.2rem;
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #E8D5B7;
    color: #4A4A4A;
    font-size: 0.85rem;
}

.info-carro-galeria span {
    display: flex;
    justify-content: space-between;
    padding: 0.1rem 0;
    border-bottom: 1px dashed #f0ebe3;
}

.info-carro-galeria span:last-child {
    border-bottom: none;
}

.info-carro-galeria span strong {
    color: #0A1628;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.galeria-container .grid-imagens {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    padding: 0 1.5rem 0.8rem;
}

.galeria-container .grid-imagens img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    background: var(--cor-bege-claro);
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
    border: 1px solid var(--cor-bege);
}

.galeria-container .grid-imagens img:hover {
    transform: scale(1.05);
}

.galeria-container .social-container {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    padding: 0.8rem 1.5rem 1.2rem;
    border-top: 2px solid #E8D5B7;
    flex-wrap: wrap;
}

.galeria-container .social-container a {
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s;
}

.galeria-container .social-container a:hover {
    transform: scale(1.05);
}

.btn-fechar {
    position: sticky;
    top: 10px;
    float: right;
    background: var(--cor-laranja);
    color: var(--cor-branco);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s;
    font-weight: 700;
    margin-right: 15px;
}

.btn-fechar:hover {
    transform: scale(1.1);
}

/* ===== CHATBOT - ASSISTENTE VIRTUAL ===== */
.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0A1628, #1A2A4A);
    color: #E87A20;
    border: 2px solid #E87A20;
    font-size: 2rem;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 4px 25px rgba(232, 122, 32, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 35px rgba(232, 122, 32, 0.5);
}

.chatbot-toggle.active {
    transform: rotate(45deg);
}

.chatbot-window {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 380px;
    height: 550px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.2);
    border: 1px solid #E8D5B7;
    z-index: 9999;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUpChat 0.3s ease;
}

.chatbot-window.active {
    display: flex;
}

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

.chatbot-header {
    background: linear-gradient(135deg, #0A1628, #1A2A4A);
    padding: 1rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #E87A20;
    flex-shrink: 0;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
}

.chatbot-header-info i {
    font-size: 1.5rem;
    color: #E87A20;
}

.chatbot-header-info span {
    font-weight: 600;
    font-size: 0.95rem;
}

.chatbot-close {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.3rem;
    cursor: pointer;
    transition: transform 0.3s;
    padding: 5px;
}

.chatbot-close:hover {
    transform: scale(1.2);
    color: #E87A20;
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1rem 0.5rem;
    background: #F8F6F0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chatbot-message {
    display: flex;
    flex-direction: column;
    max-width: 85%;
}

.chatbot-message.user {
    align-self: flex-end;
}

.chatbot-message.bot {
    align-self: flex-start;
}

.chatbot-message-content {
    padding: 0.7rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.chatbot-message.user .chatbot-message-content {
    background: #E87A20;
    color: #FFFFFF;
    border-bottom-right-radius: 4px;
}

.chatbot-message.bot .chatbot-message-content {
    background: #FFFFFF;
    color: #1A1A1A;
    border: 1px solid #E8D5B7;
    border-bottom-left-radius: 4px;
}

.chatbot-message-time {
    font-size: 0.6rem;
    color: #999;
    margin-top: 3px;
    padding: 0 5px;
}

.chatbot-message.user .chatbot-message-time {
    text-align: right;
}

.typing-indicator .chatbot-message-content {
    display: flex;
    gap: 5px;
    padding: 0.6rem 1rem;
    background: #FFFFFF;
    border: 1px solid #E8D5B7;
    border-bottom-left-radius: 4px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #999;
    animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-8px); opacity: 1; }
}

.chatbot-options {
    display: flex;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    flex-wrap: wrap;
    border-top: 1px solid #E8D5B7;
    background: #F8F6F0;
    flex-shrink: 0;
}

.chatbot-option {
    flex: 1;
    min-width: 70px;
    padding: 0.4rem 0.6rem;
    background: #FFFFFF;
    border: 1px solid #E8D5B7;
    border-radius: 20px;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s;
    color: #0A1628;
    font-weight: 500;
    white-space: nowrap;
}

.chatbot-option:hover {
    background: #E87A20;
    border-color: #E87A20;
    color: #FFFFFF;
    transform: scale(1.05);
}

.chatbot-input-area {
    display: flex;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    border-top: 1px solid #E8D5B7;
    background: #FFFFFF;
    flex-shrink: 0;
}

.chatbot-input {
    flex: 1;
    padding: 0.6rem 1rem;
    border: 1px solid #E8D5B7;
    border-radius: 25px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
    background: #F8F6F0;
    color: #1A1A1A;
}

.chatbot-input:focus {
    border-color: #E87A20;
}

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

.chatbot-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E87A20;
    border: none;
    color: #FFFFFF;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-send:hover {
    background: #D06A18;
    transform: scale(1.05);
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
    .grid-carros {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .menu-hamburguer {
        display: block;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--cor-azul-escuro);
        padding: 0.8rem 0;
        gap: 0;
        border-bottom: 3px solid var(--cor-laranja);
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        text-align: center;
        padding: 0.6rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .grid-carros {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .contato-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-logo h2 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero-sub {
        font-size: 1rem;
        letter-spacing: 5px;
    }
    
    .hero-slogan {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
    
    footer .container {
        flex-direction: column;
        text-align: center;
    }
    
    .filtros {
        flex-direction: column;
        align-items: center;
    }
    
    .filtros select {
        width: 100%;
        max-width: 280px;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .filtros button {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .logo-simbolo img {
        width: 50px;
        height: 50px;
    }
    
    .hero-simbolo img {
        width: 100px;
        height: 100px;
    }
    
    .footer-simbolo img {
        width: 60px;
        height: 60px;
    }
    
    .logo-texto-info h1 {
        font-size: 1.2rem;
    }
    
    .logo-texto-info p {
        font-size: 0.55rem;
        letter-spacing: 3px;
    }
    
    .logo-texto-info small {
        font-size: 0.4rem;
    }
    
    .card-carro .imagem {
        height: 160px;
    }
    
    .card-carro .info {
        padding: 0.8rem 0.8rem 0.3rem;
    }
    
    .card-carro .info h3 {
        font-size: 0.95rem;
    }
    
    .detalhes-veiculo {
        grid-template-columns: 1fr 1fr;
        gap: 0.2rem 0.8rem;
        padding: 0.4rem 0.6rem;
    }
    
    .detalhe-item {
        font-size: 0.65rem;
    }
    
    .acessorios-lista ul {
        grid-template-columns: 1fr 1fr;
    }
    
    .acessorios-lista ul li {
        font-size: 0.55rem;
    }
    
    .social-buttons-card {
        padding: 0.2rem 0.8rem 0.6rem;
        gap: 0.3rem;
    }
    
    .social-buttons-card a {
        font-size: 0.55rem;
        padding: 0.2rem 0.1rem;
        min-width: 25px;
    }
    
    .info-carro-galeria {
        grid-template-columns: 1fr !important;
        gap: 0.1rem !important;
        margin: 0.3rem 0.8rem 0.6rem !important;
        padding: 0.5rem 0.8rem !important;
        font-size: 0.75rem !important;
    }
    
    .galeria-container .grid-imagens {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem 0.6rem;
    }
    
    .galeria-container .grid-imagens img {
        height: 140px;
    }
    
    .galeria-container .social-container {
        padding: 0.6rem 1rem 0.8rem;
    }
    
    .galeria-container .social-container a {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    /* Chatbot responsivo */
    .chatbot-window {
        width: calc(100% - 40px);
        right: 20px;
        bottom: 100px;
        height: 480px;
    }
    
    .chatbot-toggle {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
    
    .chatbot-options {
        padding: 0.4rem 0.8rem;
        gap: 0.3rem;
    }
    
    .chatbot-option {
        font-size: 0.6rem;
        padding: 0.3rem 0.5rem;
        min-width: 60px;
    }
    
    .chatbot-header-info span {
        font-size: 0.85rem;
    }
    
    .chatbot-message-content {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-logo h2 {
        font-size: 1.8rem;
    }
    
    .hero-sub {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }
    
    .hero-slogan {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    
    .hero-descricao {
        font-size: 0.9rem;
    }
    
    .logo-simbolo img {
        width: 40px;
        height: 40px;
    }
    
    .hero-simbolo img {
        width: 80px;
        height: 80px;
    }
    
    .footer-simbolo img {
        width: 50px;
        height: 50px;
    }
    
    .logo-texto-info h1 {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .grid-carros {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 5px;
    }
    
    .card-carro {
        max-width: 100%;
        margin: 0 auto;
        overflow: hidden;
    }
    
    .card-carro .imagem {
        height: 180px;
    }
    
    .card-carro .info {
        padding: 0.8rem 0.8rem 0.3rem;
    }
    
    .card-carro .info h3 {
        font-size: 0.95rem;
    }
    
    .detalhes-veiculo {
        grid-template-columns: 1fr 1fr;
        gap: 0.1rem 0.5rem;
        padding: 0.3rem 0.5rem;
    }
    
    .detalhe-item {
        font-size: 0.6rem;
    }
    
    .acessorios-lista ul {
        grid-template-columns: 1fr 1fr;
    }
    
    .acessorios-lista ul li {
        font-size: 0.5rem;
    }
    
    .preco-ano .preco {
        font-size: 0.95rem;
    }
    
    .preco-ano .ano {
        font-size: 0.7rem;
    }
    
    .social-buttons-card {
        display: flex;
        gap: 0.25rem;
        padding: 0.3rem 0.6rem 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-buttons-card a {
        flex: 1;
        min-width: 35px;
        max-width: 45px;
        text-align: center;
        padding: 0.35rem 0.1rem;
        border-radius: 6px;
        font-size: 0.55rem;
        font-weight: 600;
        white-space: nowrap;
    }
    
    .social-buttons-card a i {
        margin-right: 2px;
        font-size: 0.6rem;
    }
    
    .galeria-container {
        padding: 0.5rem;
        max-height: 98vh;
    }
    
    .galeria-container h2 {
        font-size: 0.95rem;
        margin: 0.3rem 0.8rem;
    }
    
    .info-carro-galeria {
        font-size: 0.65rem !important;
        gap: 0.1rem !important;
        padding: 0.3rem 0.5rem !important;
        margin: 0.2rem 0.5rem 0.4rem !important;
    }
    
    .galeria-container .grid-imagens {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.3rem;
        padding: 0 0.8rem 0.4rem;
    }
    
    .galeria-container .grid-imagens img {
        height: 90px;
    }
    
    .galeria-container .social-container {
        padding: 0.4rem 0.5rem 0.6rem;
        gap: 0.3rem;
    }
    
    .galeria-container .social-container a {
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
    }
    
    .btn-fechar {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
        margin-right: 8px;
    }
    
    .social-links {
        gap: 0.4rem;
    }
    
    .social-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Chatbot responsivo */
    .chatbot-window {
        width: calc(100% - 20px);
        right: 10px;
        bottom: 85px;
        height: 420px;
    }
    
    .chatbot-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        bottom: 15px;
        right: 15px;
    }
    
    .chatbot-input {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
    
    .chatbot-send {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    
    .chatbot-option {
        font-size: 0.55rem;
        padding: 0.2rem 0.4rem;
        min-width: 50px;
    }

    /* ===== CARRINHO DE FÓRMULA 1 - LARANJA E PRETO ===== */
.car-wrapper {
    position: absolute;
    bottom: 18px;
    left: -200px;
    width: 220px;
    height: 65px;
    z-index: 20;
    animation: driveAcross 8s linear infinite;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.6));
}

.f1-car {
    position: relative;
    width: 190px;
    height: 45px;
    background: #FF6B00;
    /* Laranja McLaren */
    border-radius: 35px 35px 8px 8px;
    box-shadow: inset 0 -4px 0 #cc5500, 0 4px 0 #0a0a0a;
    border-bottom: 3px solid #0a0a0a;
}

/* Listras pretas */
.f1-car .stripe {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg,
            transparent 0px,
            transparent 25px,
            #1a1a1a 25px,
            #1a1a1a 28px);
    border-radius: 35px 35px 8px 8px;
    opacity: 0.3;
    pointer-events: none;
}

/* Asa dianteira (FRENTE do carro - lado esquerdo) */
.f1-car::before {
    content: '';
    position: absolute;
    left: -14px;
    top: 8px;
    width: 22px;
    height: 6px;
    background: #1a1a1a;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 10px 0 #1a1a1a, 0 20px 0 #1a1a1a;
    transform: rotate(4deg);
}

/* Asa traseira (TRASEIRA do carro - lado direito) */
.f1-car::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 2px;
    width: 20px;
    height: 8px;
    background: #1a1a1a;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 14px 0 #1a1a1a, 0 28px 0 #1a1a1a;
    transform: rotate(-4deg);
}

/* Cockpit / cabine */
.cockpit {
    position: absolute;
    top: -14px;
    left: 45px;
    width: 65px;
    height: 22px;
    background: #1a1a1a;
    border-radius: 22px 22px 4px 4px;
    box-shadow: inset 0 -3px 0 #0a0a0a, 0 3px 0 #0a0a0a;
}

.cockpit::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 12px;
    width: 18px;
    height: 14px;
    background: #88d8b0;
    border-radius: 12px 2px 2px 12px;
    box-shadow: inset 0 0 0 2px #1a4a32, 24px 0 0 #88d8b0, 24px 0 0 2px #1a4a32;
}

/* Halo (proteção) */
.halo {
    position: absolute;
    top: -8px;
    left: 34px;
    width: 88px;
    height: 16px;
    border: 3px solid #888;
    border-radius: 30px 30px 0 0;
    border-bottom: none;
    opacity: 0.7;
}

/* Rodas com pneus slick */
.wheel-f1 {
    position: absolute;
    bottom: -12px;
    width: 30px;
    height: 30px;
    background: #1a1a1a;
    border-radius: 50%;
    box-shadow: inset 0 -4px 0 #333, 0 4px 0 #0a0a0a;
    border: 3px solid #2a2a2a;
}

.wheel-f1::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    width: 14px;
    height: 14px;
    background: #444;
    border-radius: 50%;
    box-shadow: inset 0 0 0 3px #222;
}

.wheel-f1-front {
    left: 14px;
}
.wheel-f1-rear {
    right: 14px;
    width: 34px;
    height: 34px;
    bottom: -14px;
}
.wheel-f1-rear::after {
    width: 16px;
    height: 16px;
    top: 6px;
    left: 6px;
}

/* ===== ESCAPAMENTO E FUMAÇA NA TRASEIRA ===== */
.exhaust-f1 {
    position: absolute;
    right: -24px;
    /* Fica na traseira (direita) */
    bottom: 14px;
    width: 26px;
    height: 12px;
    background: #555;
    border-radius: 0 8px 8px 0;
    box-shadow: inset 0 2px 0 #333;
    transform: rotate(-8deg);
    z-index: 5;
}

.exhaust-f1::after {
    content: '';
    position: absolute;
    right: -10px;
    top: -2px;
    width: 16px;
    height: 16px;
    background: #444;
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(3px);
}

/* GRUPO DE FUMAÇA - posicionado na TRASEIRA (direita) */
.smoke-group-f1 {
    position: absolute;
    right: -55px;
    /* Fica atrás do escapamento */
    bottom: 22px;
    width: 90px;
    height: 65px;
    pointer-events: none;
    z-index: 20;
}

.smoke-f1 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at 30% 30%, #f0f0f0, #aab0b8);
    border-radius: 50%;
    opacity: 0.7;
    filter: blur(6px);
    animation: smokeRiseF1 1.5s ease-out infinite;
}

.smoke-f1:nth-child(1) {
    animation-delay: 0s;
    width: 24px;
    height: 24px;
    right: 0px;
    bottom: 0px;
}
.smoke-f1:nth-child(2) {
    animation-delay: 0.4s;
    width: 36px;
    height: 36px;
    right: -8px;
    bottom: 8px;
    filter: blur(8px);
}
.smoke-f1:nth-child(3) {
    animation-delay: 0.9s;
    width: 44px;
    height: 44px;
    right: -16px;
    bottom: 4px;
    filter: blur(10px);
    background: radial-gradient(circle at 20% 20%, #eaeef2, #9aa3af);
}

/* ANIMAÇÃO DO MOVIMENTO - vai da esquerda para direita em loop */
@keyframes driveAcross {
    0% {
        left: -220px;
    }
    100% {
        left: calc(100% + 20px);
    }
}

/* ANIMAÇÃO DA FUMAÇA - sobe e desaparece */
@keyframes smokeRiseF1 {
    0% {
        opacity: 0.8;
        transform: translate(0, 0) scale(0.5);
    }
    100% {
        opacity: 0;
        transform: translate(-35px, -55px) scale(2.0);
    }
}
}
/* ESCONDER ÍCONES SOCIAIS DOS CARDS E DA GALERIA */
.social-buttons-card,
.social-container {
    display: none !important;
}
/* =========================================================
   CARROSSEL DE VEÍCULOS
   ========================================================= */

   .carros-swiper {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 15px 30px 48px;
}

.carros-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.carros-swiper .swiper-slide {
    height: auto;
    display: flex;
    flex-shrink: 0;
}

.carros-swiper .card-carro {
    width: 100%;
    height: auto !important;
    min-height: 500px;
    margin: 0;
    flex: 1;
}

.carros-swiper .card-carro .imagem {
    width: 100%;
    height: 190px !important;
    object-fit: cover;
}

.carros-swiper .card-carro .info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.carros-swiper .card-carro .info h3 {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carros-swiper .preco-ano {
    margin-top: auto;
}

.carros-swiper .swiper-button-prev,
.carros-swiper .swiper-button-next {
    background: transparent !important;
    border: none !important;
    width: 35px !important;
    height: 35px !important;
    color: #E87A20 !important;
    box-shadow: none !important;
    transition: .3s;

    top: 50% !important;
    transform: translateY(-50%);
}
/* Afasta as setas dos cards */
.carros-swiper .swiper-button-prev{
    left: 1px !important;
}

.carros-swiper .swiper-button-next{
    right: 1px !important;
}



.carros-swiper .swiper-button-prev:hover,
.carros-swiper .swiper-button-next:hover {
    transform: scale(1.2);
}

.carros-swiper .swiper-button-prev:hover,
.carros-swiper .swiper-button-next:hover {
    background: #E87A20;
    color: #ffffff;
}

.carros-swiper .swiper-button-prev::after,
.carros-swiper .swiper-button-next::after {
    font-size: 38px !important;
    font-weight: 900 !important;
    color: #E87A20 !important;
}

.carros-swiper .swiper-pagination {
    bottom: 8px !important;
}

.carros-swiper .swiper-pagination-bullet-active {
    background: #E87A20;
}

/* Tablet */
@media (max-width: 768px) {
    .carros-swiper {
        padding: 12px 38px 45px;
    }

    .carros-swiper .card-carro {
        min-height: 490px;
    }
}

/* Celular */
@media (max-width: 480px) {
    .carros-swiper {
        padding: 10px 28px 42px;
    }

    .carros-swiper .card-carro {
        min-height: 470px;
    }
}
/* CORREÇÃO PARA O SWIPER NÃO HERDAR O GRID ANTIGO */
#gridCarros {
    display: flex !important;
    gap: 0 !important;
    grid-template-columns: none !important;
}

.carros-swiper .swiper-slide {
    flex-shrink: 0;
}
/* CORREÇÃO DEFINITIVA: 4 CARROS POR VEZ */

.carros-swiper .swiper-wrapper {
    display: flex !important;
}

.carros-swiper .swiper-slide {
    width: calc((100% - 90px) / 4) !important;
    flex: 0 0 calc((100% - 90px) / 4) !important;
    max-width: calc((100% - 90px) / 4) !important;
}

/* Tablet: 2 carros */
@media (max-width: 768px) {
    .carros-swiper .swiper-slide {
        width: calc((100% - 20px) / 2) !important;
        flex: 0 0 calc((100% - 20px) / 2) !important;
        max-width: calc((100% - 20px) / 2) !important;
    }
}

/* Celular: 1 carro */
@media (max-width: 480px) {
    .carros-swiper .swiper-slide {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}
/* ===== AJUSTE DAS IMAGENS DOS CARDS ===== */

.card-carro .imagem {
    width: 100% !important;
    height: 210px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    border-radius: 12px 12px 0 0 !important;
}

/* Tablet */
@media (max-width: 900px) {
    .card-carro .imagem {
        height: 190px !important;
    }
}

/* Celular */
@media (max-width: 480px) {
    .card-carro .imagem {
        width: 100% !important;
        height: 220px !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    .carros-swiper .card-carro {
        width: 100% !important;
        max-width: 100% !important;
    }
}
/* ESCONDER QUALQUER PARTE DO PRÓXIMO CARD */

.carros-swiper {
    overflow: hidden !important;
}

.carros-swiper .swiper-wrapper {
    overflow: visible !important;
}

.carros-swiper .swiper-slide {
    overflow: hidden !important;
}

.carros-swiper .card-carro {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}
/* ===== MOSTRAR EXATAMENTE 4 CARDS ===== */

.carros-swiper {
    box-sizing: border-box !important;
    overflow: hidden !important;
    .carros-swiper {
    .carros-swiper {
    padding: 15px 10px 48px !important;
}

}

}

.carros-swiper .swiper-wrapper {
    display: flex !important;
}

.carros-swiper .swiper-slide {
    width: calc((100% - 60px) / 4) !important;
    min-width: calc((100% - 60px) / 4) !important;
    max-width: calc((100% - 60px) / 4) !important;
    flex: 0 0 calc((100% - 60px) / 4) !important;
    box-sizing: border-box !important;
}

/* Tablet: 2 cards */
@media (max-width: 899px) {
    .carros-swiper .swiper-slide {
        width: calc((100% - 16px) / 2) !important;
        min-width: calc((100% - 16px) / 2) !important;
        max-width: calc((100% - 16px) / 2) !important;
        flex-basis: calc((100% - 16px) / 2) !important;
    }
}

/* Celular: 1 card */
@media (max-width: 599px) {
    .carros-swiper {
        padding: 10px 45px 42px !important;
    }

    .carros-swiper .swiper-slide {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        flex-basis: 100% !important;
    }
}
/* ===== CELULAR: SOMENTE 1 CARRO POR VEZ ===== */
@media (max-width: 599px) {

    .carros-swiper {
        width: 100% !important;
        padding: 10px 0 45px !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .carros-swiper .swiper-wrapper {
        display: flex !important;
    }

    .carros-swiper .swiper-slide {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .carros-swiper .card-carro {
        width: calc(100% - 80px) !important;
        max-width: calc(100% - 80px) !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    .carros-swiper .swiper-button-prev {
        left: 8px !important;
    }

    .carros-swiper .swiper-button-next {
        right: 8px !important;
    }
}
/* ===== ORGANIZAÇÃO DOS CARDS ===== */

.card-carro .info {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 14px;
    box-sizing: border-box;
}

.card-carro .info h3 {
    min-height: 48px;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    font-size: 1rem;
    line-height: 1.25;
}

/* Caixa cinza das informações */
.detalhes-veiculo {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px 14px !important;

    width: 100% !important;
    padding: 10px 12px !important;
    margin: 0 0 14px !important;

    background: #f4f1ec !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
}

/* Cada informação */
.detalhe-item {
    display: grid !important;
    grid-template-columns: 72px minmax(0, 1fr) !important;
    align-items: center !important;
    column-gap: 6px !important;

    padding: 0 !important;
    margin: 0 !important;
    min-width: 0 !important;
    background: transparent !important;
}

/* COR, MARCA, PORTAS... */
.detalhe-label {
    font-size: 9px !important;
    font-weight: 700 !important;
    color: #888888 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

/* vermelho, Chevrolet, 4... */
.detalhe-value {
    font-size: 9px !important;
    font-weight: 700 !important;
    color: #172033 !important;
    text-align: left !important;

    min-width: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Acessórios */
.acessorios-lista {
    margin-top: 0 !important;
    margin-bottom: 14px !important;
}

.acessorios-titulo {
    display: block;
    margin-bottom: 8px;

    font-size: 10px;
    font-weight: 700;
    color: #777777;
    text-transform: uppercase;
}

.acessorios-lista ul {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px 12px !important;

    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.acessorios-lista li {
    font-size: 9px !important;
    line-height: 1.25 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Preço e ano alinhados no final */
.preco-ano {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;

    width: 100% !important;
    margin-top: auto !important;
    padding-top: 12px !important;
    border-top: 1px solid #ead8c4 !important;
}

.preco {
    font-size: 1rem !important;
    font-weight: 800 !important;
    color: #e87a20 !important;
}

.ano {
    font-size: 0.75rem !important;
    color: #777777 !important;
}
/* ===== INFORMAÇÕES ORGANIZADAS NOS CARDS ===== */
/* ===== INFORMAÇÕES DO CARD ===== */

.detalhes-veiculo{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px 18px;
    margin:12px 0;
}

.linha-detalhe{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid #ececec;
    padding:4px 0;
}

.detalhe-label{
    font-size:10px;
    color:#888;
    font-weight:700;
    text-transform:uppercase;
}

.detalhe-value{
    font-size:11px;
    color:#172033;
    font-weight:700;
    text-align:right;
}
/* ===== AJUSTE FINAL DAS INFORMAÇÕES ===== */

.detalhes-veiculo {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px 14px !important;

    width: 100% !important;
    margin: 10px 0 12px !important;
    padding: 10px 12px !important;

    background: #f4f1ec !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
}

.linha-detalhe {
    display: grid !important;
    grid-template-columns: 68px minmax(0, 1fr) !important;
    align-items: center !important;
    column-gap: 6px !important;

    min-width: 0 !important;
    padding: 2px 0 !important;
    border: none !important;
}

.detalhe-label {
    font-size: 8px !important;
    font-weight: 700 !important;
    color: #888888 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

.detalhe-value {
    min-width: 0 !important;
    font-size: 8px !important;
    font-weight: 700 !important;
    color: #172033 !important;
    text-align: left !important;

    white-space: normal !important;
    overflow-wrap: anywhere !important;
    line-height: 1.2 !important;
}
.acessorios-lista ul {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 5px 10px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.acessorios-lista li {
    font-size: 8px !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
}
/* ===== INFORMAÇÕES LIMPAS DO CARD ===== */

.detalhes-veiculo {
    display: grid !important;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 7px 12px !important;

    width: 100% !important;
    margin: 10px 0 12px !important;
    padding: 10px !important;

    background: #f4f1ec !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
}

.linha-detalhe {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;

    min-width: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.detalhe-label {
    flex: 0 0 auto !important;

    font-size: 8px !important;
    font-weight: 700 !important;
    color: #8a8a8a !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

.detalhe-value{
    flex: 1;
    text-align: right;
    margin-right: 10px; /* afasta da borda direita */
    font-size: 8px;
    font-weight: 700;
    color: #172033;
}
.resumo-veiculo{
    margin:12px 0;
}

.versao{
    font-size:14px;
    color:#555;
    margin-bottom:8px;
    line-height:1.4;
}

.info-linha{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:6px;
    font-size:13px;
    color:#666;
}

.info-linha i{
    color:#777;
    margin-right:5px;
}
.informacoes-carro{
    margin-top:15px;
    display:flex;
    flex-direction:column;
    gap:8px;
}

.linha-info{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    color:#555;
}

.linha-info i{
    color:#e87a20;
    width:18px;
    text-align:center;
}
/* ================= CELULAR ================= */

@media (max-width: 768px) {

    .carros-swiper .swiper-button-prev,
    .carros-swiper .swiper-button-next{

        width:40px;
        height:40px;

        top:42% !important;

        transform:translateY(-50%);

        color:#e87a20 !important;
        font-size:40px !important;
        font-weight:700;

        background:none !important;
        border:none !important;
        box-shadow:none !important;
    }

    .carros-swiper .swiper-button-prev{
        left:-5px !important;
    }

    .carros-swiper .swiper-button-next{
        right:-5px !important;
    }

    .carros-swiper .swiper-button-prev::after,
    .carros-swiper .swiper-button-next::after{
        font-size:40px !important;
        font-weight:900;
    }

}

