/* ===== VARIÁVEIS ===== */
:root {
    --navy: #1B2A4A;
    --navy-light: #2C3E5A;
    --orange: #E8732C;
    --orange-hover: #D4621F;
    --bg: #FFFFFF;
    --bg-alt: #F4F5F7;
    --text: #333333;
    --text-light: #666666;
    --border: #E0E0E0;
    --green: #27AE60;
    --yellow: #F2994A;
    --red: #EB5757;
    --whatsapp: #25D366;
    --whatsapp-hover: #1EBE57;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-hover: 0 4px 16px rgba(0,0,0,0.12);
    --radius: 9px;
    --transition: 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    height: 70px;
    transition: box-shadow var(--transition);
}

.header--scrolled {
    box-shadow: var(--shadow);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo img {
    height: 50px;
    width: auto;
}

/* Carrossel de bancos no header */
.header__bancos {
    flex: 1;
    overflow: hidden;
    margin: 0 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header__bancos-label {
    display: block;
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-light);
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.header__bancos-label strong {
    color: var(--navy);
}

.header__bancos::before,
.header__bancos::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    z-index: 2;
    pointer-events: none;
}

.header__bancos::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.header__bancos::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.header__bancos-track {
    display: flex;
    gap: 24px;
    align-items: center;
    animation: scrollBancosHeader 20s linear infinite;
    width: max-content;
}

.header__bancos-track img {
    height: 22px;
    width: auto;
    opacity: 1;
    flex-shrink: 0;
}

@keyframes scrollBancosHeader {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
    transition: color var(--transition);
}

.header__link:hover {
    color: var(--orange);
}

.header__link--whatsapp {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--whatsapp);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 0.9rem;
}

.header__link--whatsapp:hover {
    background: var(--whatsapp-hover);
    color: white;
}

.header__menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.header__menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: var(--transition);
}

/* ===== SLOGAN BAR ===== */
.slogan-bar {
    background: var(--orange);
    padding: 8px 0;
    text-align: center;
}

.slogan-bar__text {
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 60px 0 48px;
    color: white;
}

.hero__carousel {
    position: relative;
    min-height: 240px;
    margin-bottom: 40px;
}

.hero__slide {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.hero__slide--active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.hero__dots {
    display: flex;
    gap: 10px;
    margin-top: 24px;
    justify-content: center;
}

.hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero__dot--active {
    background: var(--orange);
    width: 28px;
    border-radius: 5px;
}

.hero__content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero__title {
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: white;
}

.hero__sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero__actions .btn--outline {
    border-color: white;
    color: white;
}

.hero__actions .btn--outline:hover {
    background: white;
    color: var(--navy);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.hero__numeros {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
    justify-content: center;
}

.hero__numero {
    text-align: center;
}

.hero__numero-valor {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
}

.hero__numero-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0 32px;
    }

    .hero__title {
        font-size: 1.35rem;
    }

    .hero__sub {
        font-size: 1rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__numeros {
        gap: 24px;
    }

    .hero__numero-valor {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.1rem;
    }

    .hero__numeros {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-align: center;
}

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

.btn--primary:hover {
    background: var(--orange-hover);
}

.btn--outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn--outline:hover {
    background: var(--navy);
    color: white;
}

.btn--whatsapp {
    background: var(--whatsapp);
    color: white;
    font-size: 1.1rem;
    padding: 14px 32px;
}

.btn--whatsapp:hover {
    background: var(--whatsapp-hover);
}

.btn--full {
    width: 100%;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 60px 0;
    text-align: center;
}

.hero__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
}

.hero__search {
    display: flex;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hero__select {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Urbanist', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg-alt);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23666' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.hero__btn {
    flex-shrink: 0;
    padding: 12px 32px;
}

/* ===== SEÇÕES ===== */
.section__title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 28px;
}

/* ===== MARCAS ===== */
.marcas {
    padding: 48px 0;
}

.marcas__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.marcas__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
}

.marcas__item:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.marcas__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
}

/* ===== VITRINE / CARDS ===== */
.vitrine {
    padding: 48px 0;
}

.vitrine--bg {
    background: var(--bg-alt);
}

.vitrine__cta {
    text-align: center;
    margin-top: 32px;
}

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

.card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    display: block;
}

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

.card__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover .card__img {
    transform: scale(1.05);
}

.card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--navy);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card__badge + .card__badge {
    left: auto;
    right: 8px;
}

.card__badge--destaque {
    background: var(--orange);
}

.card__body {
    padding: 16px;
}

.card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card__details {
    display: flex;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.card__details span {
    display: flex;
    align-items: center;
}

.card__precos {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card__preco-fipe {
    font-size: 0.75rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.card__price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--orange);
}

.card__desconto {
    display: inline-block;
    background: #000000;
    color: #FFFFFF;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    align-self: flex-start;
}

/* ===== COMO FUNCIONA (PREVIEW) ===== */
.como-funciona-preview {
    padding: 60px 0;
}

.passos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.passos--4 {
    grid-template-columns: repeat(4, 1fr);
}

.passo {
    padding: 24px;
}

.passo__num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.passo h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.passo p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== FINANCIAMENTO ===== */
.financiamento {
    padding: 60px 0;
    background: var(--bg-alt);
}

.section__title--center {
    text-align: center;
}

.financiamento__sub {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 650px;
    margin: -12px auto 36px;
}

.financiamento__parceiro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: -8px auto 32px;
    padding: 10px 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 30px;
    width: fit-content;
}

.financiamento__parceiro img {
    height: 24px;
    width: auto;
    max-width: 24px;
}

.financiamento__parceiro span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.financiamento__parceiro strong {
    color: var(--navy);
}

.financiamento__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.financiamento__card {
    background: white;
    padding: 32px 28px;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    text-align: center;
    transition: all var(--transition);
}

.financiamento__card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.financiamento__icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.financiamento__card h3 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.financiamento__card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.cf-bloco__desc {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 28px;
}

/* ===== CTA VENDER ===== */
.cta-vender {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 60px 0;
    text-align: center;
}

.cta-vender h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 12px;
}

.cta-vender p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FILTROS TOPO ===== */
.filtros-section {
    padding: 20px 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}

/* ===== PÁGINA DE BUSCA ===== */
.busca-page {
    padding: 40px 0 60px;
}

.filtros {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.filtros__select {
    flex: 1;
    min-width: 150px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Urbanist', sans-serif;
    font-size: 0.95rem;
    background: var(--bg-alt);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23666' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.busca__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.busca__count {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.busca__vazio {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.busca__vazio p {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

/* ===== PÁGINA DO VEÍCULO ===== */
.veiculo-page {
    padding: 24px 0 60px;
}

.veiculo__voltar {
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
}

.veiculo__voltar:hover {
    color: var(--orange);
}

.veiculo__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.veiculo__foto-principal img {
    width: 100%;
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    object-fit: cover;
}

.veiculo__miniaturas {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
}

.veiculo__thumb {
    width: 72px;
    height: 54px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color var(--transition);
    flex-shrink: 0;
}

.veiculo__thumb:hover {
    border-color: var(--orange);
}

.veiculo__badges {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.veiculo__badges .card__badge {
    position: static;
}

.veiculo__titulo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
}

.veiculo__specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.veiculo__spec {
    background: var(--bg-alt);
    padding: 12px;
    border-radius: var(--radius);
    text-align: center;
}

.veiculo__spec-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.veiculo__spec-value {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.95rem;
}

/* ===== PREÇOS ===== */
.precos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

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

.precos__item {
    text-align: center;
    padding: 16px 12px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.precos__item--destaque {
    border-color: var(--orange);
    background: rgba(232, 115, 44, 0.05);
}

.precos__label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.precos__valor {
    font-weight: 800;
    font-size: 1rem;
}

.precos__valor--fipe {
    color: var(--text-light);
    text-decoration: line-through;
}

.precos__valor--mercado {
    color: var(--text);
}

.precos__valor--rota {
    color: var(--orange);
    font-size: 1.3rem;
}

.precos__desconto {
    display: inline-block;
    margin-top: 8px;
    background: #000000;
    color: #FFFFFF;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== AÇÕES DO VEÍCULO ===== */
.veiculo__acoes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ===== CHECKLIST ===== */
.checklist {
    margin-bottom: 48px;
}

.checklist__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.checklist__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--bg-alt);
    border-radius: var(--radius);
}

.checklist__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.checklist__dot--green { background: var(--green); }
.checklist__dot--yellow { background: var(--yellow); }
.checklist__dot--red { background: var(--red); }

.checklist__nome {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
}

.checklist__status {
    margin-left: auto;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== DESCRIÇÃO ===== */
.veiculo__descricao {
    margin-bottom: 48px;
}

.veiculo__descricao p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== SIMILARES ===== */
.similares {
    margin-bottom: 48px;
}

/* ===== COMO FUNCIONA (PÁGINA) ===== */
.page-como-funciona {
    padding: 40px 0 60px;
}

.cf-bloco {
    margin-bottom: 60px;
}

.cf-bloco__titulo {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 28px;
    text-align: center;
}

.cf-bloco__titulo strong {
    color: var(--orange);
}

.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.vantagem {
    text-align: center;
    padding: 28px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

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

.vantagem__icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.vantagem h3 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.vantagem p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== FAQ ===== */
.faq {
    max-width: 700px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--border);
}

.faq__item summary {
    padding: 18px 0;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    font-size: 1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq__item summary::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--orange);
    font-weight: 700;
    transition: transform var(--transition);
}

.faq__item[open] summary::after {
    transform: rotate(45deg);
}

.faq__item p {
    padding: 0 0 18px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.cf-cta {
    text-align: center;
    padding-top: 20px;
}

/* ===== PÁGINA FINANCIAR ===== */
.fin-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 60px 0;
    text-align: center;
}

.fin-hero__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.fin-hero__sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
}

.fin-hero__parceiro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding: 10px 24px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.fin-hero__parceiro img {
    height: 28px;
    width: auto;
    max-width: 28px;
}

.fin-hero__parceiro span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.fin-hero__parceiro strong {
    color: white;
}

.fin-video {
    padding: 60px 0;
}

.fin-video__wrapper {
    max-width: 375px;
    margin: 0 auto;
}

.fin-video__placeholder {
    aspect-ratio: 16/9;
    background: var(--navy);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
}

.fin-video__play {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
}

.fin-video__player {
    width: 100%;
    border-radius: 12px;
    background: #000;
}

.fin-video__iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 12px;
}

.fin-secao {
    padding: 60px 0;
}

.fin-secao--alt {
    background: var(--bg-alt);
}

.fin-secao__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.fin-secao__grid--reverse {
    grid-template-columns: 1.2fr 0.8fr;
    direction: rtl;
}

.fin-secao__grid--reverse > * {
    direction: ltr;
}

.fin-secao__tag {
    display: inline-block;
    background: var(--navy);
    color: white;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 5px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.fin-secao__tag--orange {
    background: var(--orange);
}

.fin-secao__content h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.3;
}

.fin-secao__content > p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.fin-secao__lista {
    list-style: none;
    margin-bottom: 28px;
}

.fin-secao__lista li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text);
}

.fin-secao__lista li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 800;
    font-size: 1.1rem;
}

.fin-secao__card-destaque {
    background: var(--navy);
    color: white;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
}

.fin-secao__card-destaque--orange {
    background: var(--orange);
}

.fin-secao__emoji {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.fin-secao__card-destaque h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.fin-secao__card-destaque p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

.fin-passos {
    padding: 60px 0;
}

@media (max-width: 768px) {
    .fin-hero__title {
        font-size: 1.8rem;
    }

    .fin-secao__grid,
    .fin-secao__grid--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 28px;
    }
}

/* ===== CARROSSEL BANCOS PARCEIROS ===== */
.bancos-parceiros {
    padding: 48px 0;
    background: var(--bg-alt);
}

.bancos__sub {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 32px;
}

.carrossel-bancos {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carrossel-bancos::before,
.carrossel-bancos::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.carrossel-bancos::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-alt), transparent);
}

.carrossel-bancos::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-alt), transparent);
}

.carrossel-bancos__track {
    display: flex;
    gap: 48px;
    align-items: center;
    animation: scrollBancos 30s linear infinite;
    width: max-content;
}

.carrossel-bancos__track:hover {
    animation-play-state: paused;
}

.carrossel-bancos__track img {
    height: 40px;
    width: auto;
    opacity: 1;
    flex-shrink: 0;
}

@keyframes scrollBancos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .carrossel-bancos__track {
        gap: 32px;
        animation-duration: 20s;
    }

    .carrossel-bancos__track img {
        height: 30px;
    }

    .carrossel-bancos::before,
    .carrossel-bancos::after {
        width: 40px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    color: white;
    padding: 48px 0 24px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}

.footer__logo {
    margin-bottom: 12px;
}

.footer__slogan {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.footer__col h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--orange);
}

.footer__col a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
    transition: color var(--transition);
}

.footer__col a:hover {
    color: var(--orange);
}

.footer__col p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.footer__financiamento-selo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 0;
    margin-bottom: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__financiamento-selo img {
    height: 20px;
    width: auto;
    max-width: 20px;
}

.footer__financiamento-selo span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.footer__financiamento-selo strong {
    color: rgba(255,255,255,0.9);
}

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

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.footer__aviso {
    margin-top: 8px;
    font-style: italic;
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
    z-index: 99;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

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

    .marcas__grid {
        grid-template-columns: repeat(5, 1fr);
    }

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

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

@media (max-width: 768px) {
    .header__nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    .header__nav.active {
        display: flex;
    }

    .header__bancos {
        display: none;
    }

    .header__menu-btn {
        display: flex;
    }

    .financiamento__parceiro {
        flex-direction: column;
        gap: 8px;
    }

    .hero__title {
        font-size: 1.8rem;
    }

    .hero__search {
        flex-direction: column;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .marcas__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .passos, .passos--4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .veiculo__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

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

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

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

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

    .filtros {
        flex-direction: column;
    }

    .section__title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

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

    .passos, .passos--4 {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 40px 0;
    }

    .hero__title {
        font-size: 1.5rem;
    }
}
