/* =============================================
   AUTONIVEL OLIVEIRA - ESTILOS PRINCIPAIS
   ============================================= */

:root {
    --primary: #1a1a1a;
    --accent: #c9010e;
    --accent-dark: #a00000;
    --accent-light: #e8001a;
    --white: #ffffff;
    --light: #f6f6f6;
    --border: #e2e2e2;
    --text: #222222;
    --text-muted: #666666;
    --green: #25d366;
    --green-dark: #1da851;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --radius: 10px;
    --radius-sm: 6px;
    --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.25s ease;
}

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

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

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* =============================================
   UTILITARIOS
   ============================================= */

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

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

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

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

/* BOTOES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

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

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

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}

.btn--outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
}

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

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

.btn--block {
    width: 100%;
    margin-top: 24px;
}

/* =============================================
   HEADER
   ============================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    background: rgba(20, 20, 20, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: box-shadow var(--transition);
}

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

.header__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 70px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header__logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.header__logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.header__logo-text strong {
    color: var(--accent);
}

.nav {
    margin-left: auto;
}

.nav__list {
    display: flex;
    gap: 4px;
}

.nav__link {
    display: block;
    padding: 8px 14px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav__link:hover,
.nav__link.active {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.header__btn {
    padding: 9px 20px;
    font-size: 0.88rem;
    flex-shrink: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* =============================================
   HERO
   ============================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0000 50%, #1a1a1a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--white), transparent);
}

.hero__overlay {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(201,1,14,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 120px 20px 100px;
    max-width: 680px;
}

.hero__tag {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero__title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero__stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

/* =============================================
   CATALOGO
   ============================================= */

.catalogo {
    padding: 80px 0;
    background: var(--light);
}

/* FILTROS */
.filtros {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid var(--border);
}

.filtros__busca {
    flex: 1;
    min-width: 200px;
}

.filtros__input {
    width: 100%;
    padding: 11px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font);
    color: var(--text);
    background: var(--light);
    transition: border-color var(--transition);
    outline: none;
}

.filtros__input:focus {
    border-color: var(--accent);
    background: var(--white);
}

.filtros__selects {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filtros__select {
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-family: var(--font);
    color: var(--text);
    background: var(--light);
    cursor: pointer;
    outline: none;
    transition: border-color var(--transition);
}

.filtros__select:focus {
    border-color: var(--accent);
}

.catalogo__info {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    min-height: 22px;
}

/* GRID */
.carros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

/* LOADING */
.loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 64px 0;
    color: var(--text-muted);
}

.loading__spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* CARRO CARD */
.carro-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

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

.carro-card__img-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--light);
}

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

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

.carro-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #aaa;
    gap: 8px;
    font-size: 0.85rem;
}

.carro-card__img-placeholder svg {
    opacity: 0.4;
}

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

.carro-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.carro-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.carro-card__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

.carro-card__year {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(201,1,14,0.08);
    padding: 3px 10px;
    border-radius: 4px;
    white-space: nowrap;
}

.carro-card__specs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.carro-card__spec {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.carro-card__spec::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--border);
    border-radius: 50%;
}

.carro-card__spec:first-child::before {
    display: none;
}

.carro-card__desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.carro-card__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.carro-card__preco {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
}

.carro-card__preco small {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    display: block;
    margin-bottom: 2px;
}

.carro-card__actions {
    display: flex;
    gap: 8px;
}

.carro-card__btn {
    padding: 9px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}

.carro-card__btn--wpp {
    background: var(--green);
    color: var(--white);
}

.carro-card__btn--wpp:hover {
    background: var(--green-dark);
}

.carro-card__btn--details {
    background: var(--light);
    color: var(--text);
    border: 1.5px solid var(--border);
}

.carro-card__btn--details:hover {
    background: var(--border);
}

/* EMPTY STATE */
.empty-state {
    text-align: center;
    padding: 72px 20px;
    color: var(--text-muted);
}

.empty-state__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--light);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--border);
    margin: 0 auto 20px;
}

.empty-state h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.empty-state p {
    margin-bottom: 24px;
}

/* =============================================
   NOSSA LOJA
   ============================================= */

.nossa-loja {
    padding: 90px 0;
    background: var(--primary);
}

.nossa-loja .section-title {
    color: var(--white);
}

.nossa-loja .section-desc {
    color: rgba(255,255,255,0.55);
}

.nossa-loja__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.nossa-loja__foto {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.nossa-loja__foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nossa-loja__foto:hover img {
    transform: scale(1.04);
}

/* =============================================
   SOBRE
   ============================================= */

.sobre {
    padding: 90px 0;
    background: var(--white);
}

.sobre__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.sobre__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sobre__content p {
    color: var(--text-muted);
    line-height: 1.75;
    overflow-wrap: break-word;
    word-break: break-word;
}

.sobre__lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 8px 0;
}

.sobre__lista li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text);
}

.sobre__lista li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.sobre__visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.sobre__fachada {
    grid-column: 1 / -1;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/10;
    box-shadow: var(--shadow-md);
}

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

.sobre__fachada:hover img {
    transform: scale(1.03);
}

.sobre__card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
}

.sobre__card--destaque {
    grid-column: 1 / -1;
    background: var(--primary);
    border-color: var(--primary);
}

.sobre__card--destaque .sobre__card-num {
    color: var(--white);
}

.sobre__card--destaque .sobre__card-label {
    color: rgba(255,255,255,0.6);
}

.sobre__card-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.sobre__card-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* =============================================
   DEPOIMENTOS
   ============================================= */

.depoimentos {
    padding: 90px 0;
    background: var(--light);
}

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

.depoimento-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow var(--transition);
}

.depoimento-card:hover {
    box-shadow: var(--shadow-md);
}

.depoimento-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

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

.depoimento-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.depoimento-card__name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary);
}

.depoimento-card__meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.depoimento-card__stars {
    font-size: 1rem;
    color: #fbbc04;
    letter-spacing: 1px;
}

.depoimento-card__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* =============================================
   CONTATO
   ============================================= */

.contato {
    padding: 90px 0;
    background: var(--light);
}

.contato__inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

.contato__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contato__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contato__item-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contato__item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contato__item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contato__item a {
    color: var(--accent);
    font-weight: 600;
}

.contato__mapa {
    position: relative;
}

.contato__mapa iframe {
    border-radius: var(--radius);
    display: block;
}

.mapa__link {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
}

.mapa__link:hover {
    text-decoration: underline;
}

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

.footer {
    background: var(--primary);
    color: var(--white);
    padding-top: 56px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.footer__logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer__logo-text {
    font-size: 1.1rem;
    font-weight: 700;
}

.footer__brand p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    max-width: 300px;
}

.footer__col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.7);
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col li,
.footer__col a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

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

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
}

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

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

.footer__bottom-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer__dev-link {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.2);
    transition: color var(--transition);
}

.footer__dev-link:hover {
    color: rgba(255,255,255,0.45);
}

.footer__admin-link {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.15);
    transition: color var(--transition);
}

.footer__admin-link:hover {
    color: rgba(255,255,255,0.4);
}

/* =============================================
   MODAL DE DETALHES
   ============================================= */

.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.open {
    display: flex;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
}

.modal__box {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    animation: modalIn 0.25s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.modal__close {
    position: sticky;
    top: 16px;
    float: right;
    margin: 16px 16px 0 0;
    width: 36px;
    height: 36px;
    background: var(--light);
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: var(--text);
    transition: background var(--transition);
}

.modal__close:hover {
    background: var(--border);
}

.modal__content {
    padding: 0 28px 28px;
    clear: both;
}

.modal__img {
    width: calc(100% + 56px);
    margin: 0 -28px 24px;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

/* Carrossel de fotos no modal */
.modal__carousel {
    position: relative;
    width: calc(100% + 56px);
    margin: 0 -28px 24px;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #111;
}

.modal__carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.35s ease;
}

.modal__carousel-img {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal__carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    color: #fff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
    line-height: 1;
    padding: 0;
}

.modal__carousel-btn:hover {
    background: rgba(0,0,0,0.75);
}

.modal__carousel-btn--prev { left: 10px; }
.modal__carousel-btn--next { right: 10px; }

.modal__carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.modal__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.modal__dot.active {
    background: #fff;
    transform: scale(1.25);
}

/* Badge de quantidade de fotos no card */
.carro-card__photo-count {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
    backdrop-filter: blur(2px);
}

.modal__title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

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

.modal__specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
    background: var(--light);
    padding: 16px;
    border-radius: var(--radius-sm);
}

.modal__spec-item strong {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.modal__spec-item span {
    font-size: 0.95rem;
    font-weight: 600;
}

.modal__desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 24px;
}

.modal__actions {
    display: flex;
    gap: 12px;
}

/* =============================================
   WHATSAPP FLUTUANTE
   ============================================= */

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 1500;
    transition: all var(--transition);
}

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

/* =============================================
   RESPONSIVO
   ============================================= */

@media (max-width: 900px) {
    .depoimentos__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sobre__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre__visual {
        grid-template-columns: repeat(3, 1fr);
    }

    .sobre__card--destaque {
        grid-column: auto;
    }

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

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

    .footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(20, 20, 20, 0.98);
        padding: 16px 20px;
        display: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav.open {
        display: block;
    }

    .nav__list {
        flex-direction: column;
        gap: 0;
    }

    .nav__link {
        padding: 13px 8px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .hamburger {
        display: flex;
    }

    .header__btn {
        display: none;
    }

    .hero__content {
        padding: 100px 20px 80px;
        text-align: center;
    }

    .hero__tag {
        text-align: center;
    }

    .hero__subtitle {
        margin: 0 auto 36px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__stats {
        gap: 24px;
        justify-content: center;
    }

    .sobre__content {
        text-align: center;
    }

    .sobre__lista {
        align-self: center;
        width: fit-content;
        margin: 0 auto;
    }

    .sobre__lista li {
        justify-content: flex-start;
    }

    .sobre__content .btn {
        align-self: center;
    }

    .contato__item {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 16px;
        box-shadow: var(--shadow-sm);
    }

    .contato__item-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .nossa-loja__grid {
        grid-template-columns: 1fr;
    }

    .filtros {
        flex-direction: column;
        align-items: stretch;
    }

    .filtros__selects {
        flex-direction: column;
    }

    .filtros__select {
        width: 100%;
    }

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

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

    .modal__actions {
        flex-direction: column;
    }
}

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

    .sobre {
        overflow-x: hidden;
    }

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

    .sobre__card--destaque {
        grid-column: 1 / -1;
    }

    .sobre__card-num {
        font-size: 1.5rem;
    }

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

    .footer__bottom .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .hero__stats {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }

    .hero__stat {
        align-items: center;
    }
}
