
  :root {
    --yellow: #FFE600;
    --yellow-dark: #E6CF00;
    --black: #111111;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-mid: #E8E8E8;
    --gray-text: #555555;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Nunito', sans-serif;
    --shadow: 0 4px 24px rgba(0,0,0,0.10);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.14);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.18);
    --radius: 8px;
    --radius-lg: 10px;
  }

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

  html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 80px; background: #0a0a0a; }
  @media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
    * { scroll-behavior: smooth; }
  }
  

  body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
  }

  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }

  /* ─── UTILITY ─── */
  .container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
  }
  .section-sub {
    font-size: 1.05rem;
    color: var(--gray-text);
    margin-top: 10px;
    line-height: 1.6;
  }
  .tag-yellow {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 14px;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.3s ease,
                color 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.3px;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    will-change: transform;
  }
  .btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
  }
  .btn:hover::before { left: 100%; }

  /* Efeito de onda ao clicar (ripple) */
  .btn::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
    opacity: 0;
    pointer-events: none;
  }
  .btn:active::after {
    width: 300px;
    height: 300px;
    opacity: 0;
    transition: width 0s, height 0s, opacity 0s;
    opacity: 1;
  }

  .btn-yellow {
    background: var(--yellow);
    color: var(--black);
    box-shadow: 0 4px 14px rgba(255,230,0,0.35);
  }
  .btn-yellow:hover {
    background: var(--yellow-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255,230,0,0.3);
  }
  .btn-yellow:active {
    transform: translateY(-1px) scale(0.97);
    box-shadow: 0 3px 10px rgba(255,230,0,0.4);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
  }

  .btn-black {
    background: var(--black);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  }
  .btn-black:hover {
    background: #2a2a2a;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  .btn-black:active {
    transform: translateY(-1px) scale(0.97);
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
  }
  .btn-black::after { background: rgba(255,230,0,0.35); }

  .btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
  }
  .btn-outline:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
  }
  .btn-outline:active {
    transform: translateY(-1px) scale(0.97);
    transition: transform 0.1s ease;
  }

  /* ─── SCROLL REVEAL ─── */
  .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: none; }

  /* ════════════════════════════════════════
     HEADER
  ════════════════════════════════════════ */
  #header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 16px rgba(0,0,0,0.09);
    transition: box-shadow 0.3s;
  }
  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 20px;
    max-width: 1180px;
    margin: 0 auto;
    gap: 20px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    text-transform: uppercase;
  }
  .logo-icon {
    width: 38px; height: 38px;
    background: var(--yellow);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
  }
  .logo span { color: var(--yellow); }
  .header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--black);
  }
  .header-phone svg { color: var(--gray-text); }
  .header-actions { display: flex; align-items: center; gap: 12px; }
  .header-actions a.btn { padding: 10px 20px; font-size: 0.9rem; }

  /* NAV */
  nav { border-top: 1px solid var(--gray-mid); background: var(--white); }
  nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 4px;
    overflow-x: auto;
  }
  nav ul li a {
    display: block;
    padding: 10px 14px;
    font-size: 0.87rem;
    font-weight: 700;
    color: var(--gray-text);
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
  }
  nav ul li a:hover, nav ul li a.active {
    color: var(--black);
    border-color: var(--yellow);
  }

  /* HAMBURGER */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
    z-index: 1002;
    position: relative;
  }
  .hamburger span {
    display: block; width: 24px; height: 2.5px;
    background: var(--black); border-radius: 2px;
    transition: all 0.3s;
  }
  .hamburger.open span { background: var(--black); }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* Mobile nav overlay (fundo escuro) */
  .mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
  }

  /* Mobile nav (painel deslizante da direita) */
  .mobile-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 86%;
    max-width: 360px;
    background: var(--white);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -16px 0 48px rgba(0,0,0,0.2);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .mobile-nav.open { transform: translateX(0); }

  /* Header dentro do menu mobile */
  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--gray-mid);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 2;
  }
  .mobile-nav-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .mobile-nav-logo span { color: #b8a000; }
  .mobile-nav-logo .mn-logo-icon {
    width: 30px; height: 30px;
    background: var(--yellow);
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
  }
  .mobile-nav-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--gray-light);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--black);
    transition: background 0.2s;
  }
  .mobile-nav-close:hover { background: var(--gray-mid); }

  /* Lista de links */
  .mobile-nav-links {
    flex: 1;
    padding: 12px 0 24px;
    display: flex;
    flex-direction: column;
  }
  .mobile-nav-link {
    font-family: var(--font-body);
    font-size: 1.02rem;
    font-weight: 700;
    text-transform: none;
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s, color 0.2s, padding 0.2s;
    opacity: 0;
    transform: translateX(20px);
  }
  .mobile-nav.open a.mobile-nav-link {
    animation: mobile-link-in 0.4s ease forwards;
  }
  .mobile-nav.open a.mobile-nav-link:nth-child(1)  { animation-delay: 0.08s; }
  .mobile-nav.open a.mobile-nav-link:nth-child(2)  { animation-delay: 0.13s; }
  .mobile-nav.open a.mobile-nav-link:nth-child(3)  { animation-delay: 0.18s; }
  .mobile-nav.open a.mobile-nav-link:nth-child(4)  { animation-delay: 0.23s; }
  .mobile-nav.open a.mobile-nav-link:nth-child(5)  { animation-delay: 0.28s; }
  .mobile-nav.open a.mobile-nav-link:nth-child(6)  { animation-delay: 0.33s; }
  .mobile-nav.open a.mobile-nav-link:nth-child(7)  { animation-delay: 0.38s; }
  .mobile-nav.open a.mobile-nav-link:nth-child(8)  { animation-delay: 0.43s; }
  .mobile-nav.open a.mobile-nav-link:nth-child(9)  { animation-delay: 0.48s; }
  @keyframes mobile-link-in {
    to { opacity: 1; transform: translateX(0); }
  }
  .mobile-nav-link::after {
    content: '›';
    color: var(--gray-text);
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.5;
    transition: transform 0.2s, color 0.2s, opacity 0.2s;
  }
  .mobile-nav-link:hover,
  .mobile-nav-link:active {
    background: #fffbe6;
    color: #8a7a00;
    padding-left: 28px;
  }
  .mobile-nav-link:hover::after,
  .mobile-nav-link:active::after {
    color: #b8a000;
    opacity: 1;
    transform: translateX(4px);
  }

  /* Footer do menu mobile (CTAs + contato) */
  .mobile-nav-footer {
    padding: 22px 24px 28px;
    border-top: 1px solid var(--gray-mid);
    background: var(--gray-light);
  }
  .mobile-nav-footer .btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 15px;
    margin-bottom: 14px;
  }
  .mobile-nav-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
  }
  .mobile-nav-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gray-text);
  }
  .mobile-nav-contact-item strong {
    color: var(--black);
    font-weight: 700;
  }
  .mobile-nav-contact-icon {
    width: 28px; height: 28px;
    background: var(--white);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  }

  /* ════════════════════════════════════════
     HERO
  ════════════════════════════════════════ */
  #hero {
    margin-top: 108px;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?w=1920&q=80&fit=crop&auto=format');
    background-size: cover;
    background-position: center;
    opacity: 0.38;
    transform: scale(1.05);
    animation: parallax-scale 8s ease-out forwards;
  }
  @keyframes parallax-scale {
    from { transform: scale(1.08); }
    to { transform: scale(1.0); }
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.55) 60%, rgba(17,17,17,0.2) 100%);
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 1180px; margin: 0 auto; padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
  }
  .hero-left {}
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,230,0,0.15);
    border: 1.5px solid rgba(255,230,0,0.4);
    color: var(--yellow);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 24px;
    animation: fade-up 0.8s ease both;
  }
  .hero-badge::before { content: '✓'; font-size: 0.85rem; }
  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 900;
    color: var(--white);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    animation: fade-up 0.8s 0.1s ease both;
  }
  .hero-title .line-1,
  .hero-title .line-3,
  .hero-title em {
    display: block;
    line-height: 0.95;
  }
  .hero-title em {
    color: var(--yellow);
    font-style: normal;
  }
  .hero-sub {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 500px;
    animation: fade-up 0.8s 0.2s ease both;
  }
  .hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fade-up 0.8s 0.3s ease both;
  }
  .hero-btns .btn { padding: 16px 30px; font-size: 1rem; }
  .hero-trust {
    margin-top: 44px;
    display: flex;
    gap: 0;
    flex-wrap: nowrap;
    align-items: center;
    animation: fade-up 0.8s 0.4s ease both;
  }
  .hero-trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 20px;
  }
  .hero-trust-item:first-child { padding-left: 0; }
  .hero-trust-item strong {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--yellow);
    white-space: nowrap;
  }
  .hero-trust-item span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    white-space: nowrap;
  }
  .hero-trust-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); flex-shrink: 0; }

  /* Hero Right - Form */
  .hero-form-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    animation: fade-up 0.8s 0.2s ease both;
    position: relative;
  }
  .form-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(90deg, #16a34a, #22c55e);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(22,163,74,0.25);
  }
  .hero-form-box h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .hero-form-box p {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin-bottom: 22px;
  }
  .form-group { margin-bottom: 14px; }
  .form-group label {
    display: block;
    font-size: 0.83rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--black);
  }
  .form-group input, .form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--gray-mid);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s;
    background: var(--white);
  }
  .form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--yellow);
  }
  .form-submit { width: 100%; padding: 15px; font-size: 1rem; border-radius: 10px; margin-top: 8px; justify-content: center; }
  .form-note { text-align: center; font-size: 0.8rem; color: var(--gray-text); margin-top: 10px; }

  @keyframes fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: none; }
  }

  /* ════════════════════════════════════════
     NOVIDADES NO PÁTIO
  ════════════════════════════════════════ */
  #novidades {
    padding: 80px 0;
    background: var(--gray-light);
  }
  .novidades-header {
    text-align: center;
    margin-bottom: 48px;
  }
  .vehicles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-items: stretch;
  }
  .vehicle-card { -webkit-tap-highlight-color: transparent;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
  }
  .vehicle-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
  .vehicle-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #ddd;
  }
  .vehicle-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    loading: lazy;
  }
  .vehicle-card:hover .vehicle-img-wrap img { transform: scale(1.06); }
  .vehicle-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--yellow);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 6px;
  }
  .vehicle-status {
    position: absolute;
    bottom: 10px; left: 10px;
    background: rgba(17,17,17,0.82);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
  }
  .vehicle-info {
    padding: 16px;
  }
  .vehicle-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
    margin-bottom: 4px;
  }
  .vehicle-year {
    font-size: 0.82rem;
    color: var(--gray-text);
    font-weight: 600;
    margin-bottom: 14px;
  }
  .vehicle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--black);
    color: var(--white);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.3s ease,
                color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    will-change: transform;
  }
  .vehicle-btn:hover { background: var(--yellow); color: var(--black); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(255,230,0,0.4); }
  .vehicle-btn:active {
    transform: translateY(0) scale(0.97);
    box-shadow: 0 2px 6px rgba(255,230,0,0.3);
    transition: transform 0.1s ease;
  }

  /* ════════════════════════════════════════
     BENEFÍCIOS
  ════════════════════════════════════════ */
  #beneficios {
    padding: 80px 0;
    background: var(--white);
  }
  .beneficios-header { text-align: center; margin-bottom: 48px; }
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .benefit-card {
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    cursor: default;
  }
  .benefit-card:hover {
    border-color: var(--yellow);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
  }
  .benefit-icon {
    width: 52px; height: 52px;
    background: var(--yellow);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
  }
  .benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }
  .benefit-card p { font-size: 0.9rem; color: var(--gray-text); line-height: 1.6; }

  /* ════════════════════════════════════════
     QUEM SOMOS
  ════════════════════════════════════════ */
  #quem-somos {
    padding: 80px 0;
    background: var(--black);
    color: var(--white);
  }
  .quem-somos-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .quem-somos-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #1a1a1a url('https://images.unsplash.com/photo-1487754180451-c456f719a1fc?w=800&q=80&fit=crop&auto=format') center/cover no-repeat;
  }
  .quem-somos-img img { width: 100%; height: 100%; object-fit: cover; }

  .quem-somos-img::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid var(--yellow);
    border-radius: var(--radius-lg);
    transform: translate(10px, 10px);
    z-index: -1;
  }
  .quem-somos-content .section-title { color: var(--white); }
  .quem-somos-content .section-sub { color: rgba(255,255,255,0.65); }
  .quem-somos-content p {
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin: 20px 0;
    font-size: 1rem;
  }
  .stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .stat-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
  }
  .stat-item span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    display: block;
  }

  /* ════════════════════════════════════════
     GARANTIA
  ════════════════════════════════════════ */
  #garantia {
    padding: 80px 0;
    background: var(--yellow);
  }
  .garantia-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .garantia-left .section-title { font-size: clamp(2rem, 4vw, 3.2rem); }
  .garantia-left p { font-size: 1rem; line-height: 1.7; color: rgba(17,17,17,0.75); margin-top: 16px; max-width: 440px; }
  .garantia-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .garantia-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }
  .garantia-card .g-icon { font-size: 1.6rem; }
  .garantia-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
  }
  .garantia-card p { font-size: 0.85rem; color: var(--gray-text); line-height: 1.5; }

  /* ════════════════════════════════════════
     COMO FUNCIONA
  ════════════════════════════════════════ */
  #como-funciona {
    padding: 80px 0;
    background: var(--white);
  }
  .como-header { text-align: center; margin-bottom: 60px; }
  .timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 24px;
  }
  .timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(10% + 36px);
    right: calc(10% + 36px);
    height: 3px;
    background: repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 12px, transparent 12px, transparent 22px);
  }
  .timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    position: relative;
    z-index: 1;
  }
  .step-num {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--black);
    color: var(--yellow);
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 3px var(--black);
    transition: all 0.3s;
  }
  .timeline-step:hover .step-num {
    background: var(--yellow);
    color: var(--black);
    box-shadow: 0 0 0 3px var(--yellow-dark);
  }
  .step-icon { font-size: 1.5rem; }
  .step-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }
  .step-desc { font-size: 0.85rem; color: var(--gray-text); line-height: 1.5; max-width: 140px; }

  /* ════════════════════════════════════════
     DEPOIMENTOS
  ════════════════════════════════════════ */
  #depoimentos {
    padding: 80px 0;
    background: var(--gray-light);
    overflow: hidden;
  }
  .dep-header { text-align: center; margin-bottom: 48px; }
  .reviews-slider {
    position: relative;
    overflow: hidden;
  }
  .reviews-track {
    display: flex;
    gap: 22px;
    transition: transform 0.5s ease;
  }
  .review-card {
    flex: 0 0 calc(33.33% - 15px);
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
  }
  .review-stars { color: #FFB300; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
  .review-text { font-size: 0.95rem; color: var(--black); line-height: 1.65; font-style: italic; margin-bottom: 20px; }
  .review-author { display: flex; align-items: center; gap: 12px; }
  .review-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--black);
    color: var(--yellow);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .review-name { font-weight: 800; font-size: 0.9rem; }
  .review-loc { font-size: 0.78rem; color: var(--gray-text); margin-top: 2px; }
  .slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
  }
  .slider-btn {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 2.5px solid var(--black);
    background: var(--white);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    transition: all 0.2s;
  }
  .slider-btn:hover { background: var(--yellow); border-color: var(--yellow); }
  .slider-dots { display: flex; gap: 8px; }
  .slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gray-mid);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
  }
  .slider-dot.active { background: var(--black); width: 24px; border-radius: 4px; }

  /* ════════════════════════════════════════
     CONFIANÇA
  ════════════════════════════════════════ */
  #confianca {
    padding: 44px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-mid);
    border-bottom: 1px solid var(--gray-mid);
  }
  .confianca-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
  }
  .confianca-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    flex: 1;
    justify-content: center;
    padding: 0 24px;
  }
  .confianca-item .ci-icon {
    width: 48px; height: 48px;
    background: var(--black);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--yellow);
    flex-shrink: 0;
  }
  .confianca-item strong { display: block; font-weight: 800; font-size: 0.95rem; }
  .confianca-item span { color: var(--gray-text); font-size: 0.82rem; }
  .confianca-divider { width: 1px; height: 50px; background: var(--gray-mid); flex-shrink: 0; }

  /* ════════════════════════════════════════
     CTA FINAL
  ════════════════════════════════════════ */
  #cta-final {
    padding: 100px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  #cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,230,0,0.12) 0%, transparent 70%);
  }
  .cta-inner { position: relative; z-index: 2; }
  .cta-eyebrow {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--yellow);
    margin-bottom: 20px;
  }
  .cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.0;
    margin-bottom: 20px;
  }
  .cta-sub {
    color: rgba(255,255,255,0.65);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-btn-wrap { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
  .cta-btn-wrap .btn { padding: 18px 40px; font-size: 1.1rem; }
  .cta-btn-pulse {
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,230,0,0.5); }
    50% { box-shadow: 0 0 0 16px rgba(255,230,0,0); }
  }
  .cta-trust-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 36px;
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    font-weight: 600;
  }
  .cta-trust-row span {
    display: inline-flex;
    align-items: center;
  }

  /* ════════════════════════════════════════
     RODAPÉ
  ════════════════════════════════════════ */
  footer {
    background: #0a0a0a;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .footer-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .footer-logo span { color: var(--yellow); }
  .footer-desc { font-size: 0.9rem; line-height: 1.65; margin-bottom: 24px; }
  .footer-social { display: flex; gap: 10px; }
  .footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: var(--white);
    transition: background 0.2s;
  }
  .footer-social a:hover { background: var(--yellow); color: var(--black); }
  .footer-col h4 {
    color: var(--white);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--yellow); }
  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    margin-bottom: 12px;
  }
  .footer-contact-item .fi { font-size: 1rem; color: var(--yellow); margin-top: 2px; flex-shrink: 0; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .footer-bottom p { font-size: 0.82rem; }
  .footer-cnpj { font-size: 0.78rem; opacity: 0.5; }
  .footer-legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
  }
  .footer-legal-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
  }
  .footer-legal-links a:hover { color: var(--yellow); }
  .footer-sep { color: rgba(255,255,255,0.3); }

  /* ════════════════════════════════════════
     FLOATING WHATSAPP
  ════════════════════════════════════════ */
  /* Botão WhatsApp — sem sombra, com animação de respiração */
  .float-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10003;
    transition: opacity 0.2s ease;
  }
  .float-whatsapp-label { display: none; }
  .float-whatsapp-btn {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #09DF27;
    display: flex; align-items: center; justify-content: center;
    animation: wa-breathe 2s ease-in-out infinite;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
  }
  @keyframes wa-breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
  }
  .float-whatsapp-btn:hover { transform: scale(1.15); animation-play-state: paused; }
  .float-whatsapp-btn:active { transform: scale(0.95); }
  .float-whatsapp-btn svg { width: 32px; height: 32px; fill: white; }

  /* ════════════════════════════════════════
     COOKIE BANNER (LGPD)
  ════════════════════════════════════════ */
  .cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 10000;
    background: var(--black);
    color: var(--white);
    padding: 18px 24px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
    transform: translateY(110%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 3px solid var(--yellow);
  }
  .cookie-banner.show { transform: translateY(0); }
  .cookie-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .cookie-text {
    flex: 1;
    min-width: 280px;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.85);
  }
  .cookie-text strong { color: var(--yellow); }
  .cookie-text a {
    color: var(--yellow);
    text-decoration: underline;
    font-weight: 700;
  }
  .cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
  }
  .cookie-buttons button {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .cookie-btn-accept { background: var(--yellow); color: var(--black); }
  .cookie-btn-accept:hover { background: var(--yellow-dark); transform: translateY(-1px); }
  .cookie-btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.25);
  }
  .cookie-btn-reject:hover { border-color: var(--white); }

  /* ════════════════════════════════════════
     PULSE DOT (status online)
  ════════════════════════════════════════ */
  .pulse-dot {
    display: inline-block;
    width: 8px; height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-green 1.5s ease-in-out infinite;
  }
  @keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
    50% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  }

  /* ════════════════════════════════════════
     URGÊNCIA / ONLINE STATUS NO HERO
  ════════════════════════════════════════ */
  .online-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34,197,94,0.12);
    border: 1px solid rgba(34,197,94,0.35);
    color: #4ade80;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
  }
  .online-status .pulse-dot { background: #22c55e; }
  .online-status::before { content: none; }

  /* ════════════════════════════════════════
     MODAL (Política, Termos, LGPD)
  ════════════════════════════════════════ */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10001;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .modal-overlay.show {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  @media (min-height: 700px) {
    .modal-overlay.show { align-items: center; }
  }
  .modal-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 760px;
    width: 100%;
    max-height: calc(100vh - 40px);
    max-height: calc(100dvh - 40px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: modal-in 0.3s ease;
    margin: auto 0;
  }
  @keyframes modal-in {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: none; }
  }
  .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    border-bottom: 1px solid var(--gray-mid);
    flex-shrink: 0;
  }
  .modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .modal-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--gray-light);
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .modal-close:hover { background: var(--gray-mid); }
  .modal-body {
    padding: 24px 28px 28px;
    overflow-y: auto;
    flex: 1;
    line-height: 1.7;
    font-size: 0.93rem;
    color: var(--gray-text);
  }
  .modal-body h4 {
    color: var(--black);
    font-size: 1rem;
    margin: 18px 0 8px;
    font-weight: 800;
  }
  .modal-body h4:first-child { margin-top: 0; }
  .modal-body p { margin-bottom: 12px; }
  .modal-body ul { margin: 8px 0 12px 20px; }
  .modal-body ul li { margin-bottom: 6px; }
  .modal-body strong { color: var(--black); }

  .scroll-hint {
    display: none;
    font-size: 0.75rem;
    color: var(--gray-text);
    margin-top: 10px;
    letter-spacing: 0.5px;
  }

  /* ════════════════════════════════════════
     FAQ
  ════════════════════════════════════════ */
  #faq {
    padding: 80px 0;
    background: var(--white);
  }
  .faq-header { text-align: center; margin-bottom: 48px; }
  .faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .faq-item {
    background: var(--gray-light);
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.25s ease;
  }
  .faq-item.open {
    background: var(--white);
    border-color: var(--yellow);
    box-shadow: var(--shadow);
  }
  .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    transition: color 0.2s;
  }
  .faq-question:hover { color: var(--gray-text); }
  .faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--black);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    transition: transform 0.3s ease, background 0.2s, color 0.2s;
  }
  .faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--yellow);
    color: var(--black);
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .faq-answer-inner {
    padding: 0 24px 22px;
    font-size: 0.93rem;
    line-height: 1.65;
    color: var(--gray-text);
  }
  .faq-item.open .faq-answer { max-height: 400px; }

  /* ════════════════════════════════════════
     TABLET (≤ 1024px)
  ════════════════════════════════════════ */
  @media (max-width: 1024px) {
    #hero { margin-top: 0; min-height: auto; }
    .hero-content { grid-template-columns: 1fr; gap: 36px; padding: 64px 24px 56px; }
    .hero-form-box { max-width: 540px; margin: 0 auto; width: 100%; }
    .quem-somos-inner { grid-template-columns: 1fr; gap: 36px; }
    .quem-somos-img { max-height: 300px; }
    .garantia-inner { grid-template-columns: 1fr; gap: 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .timeline { flex-direction: column; gap: 24px; }
    .timeline::before { display: none; }
    .timeline-step { flex-direction: row; text-align: left; align-items: flex-start; gap: 20px; }
    .step-num { flex-shrink: 0; width: 56px; height: 56px; font-size: 1.5rem; }
    .step-desc { max-width: none; }
    .vehicles-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  }

  /* ════════════════════════════════════════
     ═══════════════════════════════════════
     MOBILE (≤ 768px) — REFINADO PROFISSIONAL
     ═══════════════════════════════════════
  ════════════════════════════════════════ */
  @media (max-width: 768px) {

    /* ─── BASE ─── */
    html, body { overflow-x: hidden; }
    .container { padding: 0 20px; max-width: 100%; }
    .section-title { font-size: 1.8rem; line-height: 1.1; letter-spacing: 0; }
    .section-sub { font-size: 0.92rem; line-height: 1.55; }
    .tag-yellow { font-size: 0.68rem; padding: 4px 11px; margin-bottom: 12px; letter-spacing: 1px; }

    /* ─── HEADER ─── */
    #header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: #ffffff; }
    .header-top { padding: 6px 14px; gap: 8px; min-height: 56px; }
    .logo { font-size: 1.1rem; gap: 6px; letter-spacing: 0; }
    .logo img { height: 42px !important; max-width: 160px; }
    .logo-icon { width: 28px; height: 28px; font-size: 0.85rem; border-radius: 7px; }
    .header-phone { display: none; }
    .header-actions { gap: 14px; }
    .header-actions a.btn { padding: 8px 13px; font-size: 0.74rem; gap: 4px; }
    nav { display: none; }
    .hamburger { display: flex; padding: 8px; margin: 0; -webkit-tap-highlight-color: transparent; transition: transform 0.2s ease; } .hamburger:active { transform: scale(0.88); }
    .hamburger span { width: 20px; }

    /* ─── HERO ─── */
    #hero { margin-top: 56px; min-height: auto; }
    .hero-content { grid-template-columns: 1fr; gap: 28px; padding: 44px 20px 40px; }
    .hero-badge { font-size: 0.68rem; padding: 5px 12px; margin-bottom: 18px; letter-spacing: 1px; }
    .hero-title { font-size: 2.1rem; line-height: 1.05; margin-bottom: 16px; letter-spacing: 0; }
    .hero-sub { font-size: 0.95rem; line-height: 1.6; margin-bottom: 24px; max-width: 100%; }
    .hero-btns { flex-direction: column; gap: 10px; }
    .hero-btns .btn { width: 100%; justify-content: center; padding: 14px 18px; font-size: 0.95rem; white-space: normal; }

    /* HERO TRUST — Sempre 4 em linha */
    .hero-trust {
      margin-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      gap: 0;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.12);
    }
    .hero-trust-item {
      flex: 1;
      padding: 0 4px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
    }
    .hero-trust-item:first-child { padding-left: 0; }
    .hero-trust-item:last-child { padding-right: 0; }
    .hero-trust-item strong { font-size: 1.1rem; line-height: 1; }
    .hero-trust-item span { font-size: 0.58rem; letter-spacing: 0.3px; line-height: 1.2; }
    .hero-trust-divider { display: none; }

    /* FORMULÁRIO HERO */
    .hero-form-box { padding: 22px 18px; border-radius: 14px; max-width: 100%; }
    .hero-form-box h3 { font-size: 1.2rem; margin-bottom: 4px; }
    .hero-form-box p { font-size: 0.83rem; margin-bottom: 18px; line-height: 1.5; }
    .form-group { margin-bottom: 12px; }
    .form-group label { font-size: 0.78rem; margin-bottom: 5px; }
    .form-group input { padding: 11px 13px; font-size: 0.92rem; border-radius: 8px; }
    .form-submit { padding: 14px; font-size: 0.95rem; margin-top: 6px; }
    .form-note { font-size: 0.72rem; margin-top: 12px; }

    /* ─── RITMO VERTICAL (PADDING DE SEÇÕES) ─── */
    #novidades, #beneficios, #quem-somos,
    #garantia, #como-funciona, #depoimentos,
    #cta-final { padding: 56px 0; }
    #confianca { padding: 32px 0; }

    /* ═══════ NOVIDADES NO PÁTIO — SLIDER CENTRALIZADO ═══════ */
    .novidades-header { margin-bottom: 24px; text-align: center; padding: 0 20px; }
    .scroll-hint {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 0.72rem;
      color: var(--gray-text);
      margin-top: 12px;
      letter-spacing: 0.5px;
      font-weight: 600;
    }
    /* Slider FULL-WIDTH com snap centralizado */
    .container:has(.vehicles-grid) { padding-left: 0; padding-right: 0; max-width: 100%; }
    #novidades .container { padding-left: 0; padding-right: 0; max-width: 100%; }
    #novidades .novidades-header { padding-left: 20px; padding-right: 20px; }
    .vehicles-grid {
      display: flex;
      flex-direction: row;
      overflow-x: auto;
      overflow-y: hidden;
      gap: 14px;
      padding: 8px 0 20px;
      margin: 0;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
      justify-content: flex-start;
      touch-action: pan-x pan-y;
      overscroll-behavior-x: contain;
    }
    .vehicles-grid::-webkit-scrollbar { display: none; }
    /* Espaçadores invisíveis no início/fim centralizam 1º e último cards */
    .vehicles-grid::before,
    .vehicles-grid::after {
      content: "";
      flex: 0 0 calc(50vw - 140px);
      min-width: 6px;
    }
    .vehicle-card { -webkit-tap-highlight-color: transparent;
      flex: 0 0 280px;
      width: 280px;
      max-width: 280px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.10);
    }
    .vehicle-img-wrap { aspect-ratio: 4/3; }
    .vehicle-info { padding: 14px 16px 16px; }
    .vehicle-name { font-size: 1.05rem; }
    .vehicle-year { font-size: 0.78rem; margin-bottom: 12px; }
    .vehicle-btn { font-size: 0.82rem; padding: 11px 12px; }
    .vehicle-badge { font-size: 0.62rem; padding: 4px 9px; }
    .vehicle-status { font-size: 0.62rem; padding: 4px 9px; }

    /* ═══════ BENEFÍCIOS ═══════ */
    .beneficios-header { margin-bottom: 28px; text-align: center; }
    .benefits-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .benefit-card { padding: 20px 16px; gap: 10px; }
    .benefit-icon { width: 44px; height: 44px; font-size: 1.2rem; border-radius: 10px; }
    .benefit-card h3 { font-size: 0.92rem; line-height: 1.2; }
    .benefit-card p { font-size: 0.81rem; line-height: 1.5; }

    /* ═══════ QUEM SOMOS ═══════ */
    .quem-somos-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .quem-somos-img { max-height: 220px; border-radius: var(--radius); width: 100%; margin: 0; }
    .quem-somos-img::after { display: none; }
    .quem-somos-content { display: flex; flex-direction: column; align-items: center; }
    .quem-somos-content p { font-size: 0.9rem; line-height: 1.65; margin: 14px 0; text-align: left; width: 100%; }
    .stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      width: 100%;
      margin-top: 24px;
      padding-top: 24px;
    }
    .stat-item {
      padding: 0 6px;
      border-right: 1px solid rgba(255,255,255,0.12);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .stat-item:last-child { border-right: none; }
    .stat-item strong { font-size: 1.45rem; }
    .stat-item span { font-size: 0.65rem; letter-spacing: 0.3px; margin-top: 4px; }

    /* ═══════ GARANTIA ═══════ */
    .garantia-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .garantia-left { display: flex; flex-direction: column; align-items: center; }
    .garantia-left p { font-size: 0.9rem; max-width: 100%; text-align: center; }
    .garantia-left .btn { width: 100%; max-width: 320px; justify-content: center; margin-top: 22px; }
    .garantia-cards { grid-template-columns: 1fr 1fr; gap: 10px; text-align: left; }
    .garantia-card { padding: 16px 14px; gap: 8px; }
    .garantia-card .g-icon { font-size: 1.4rem; }
    .garantia-card h4 { font-size: 0.85rem; }
    .garantia-card p { font-size: 0.78rem; line-height: 1.45; }

    /* ═══════ COMO FUNCIONA ═══════ */
    .como-header { margin-bottom: 32px; text-align: center; }
    .timeline {
      flex-direction: column;
      gap: 0;
      position: relative;
      padding-left: 0;
    }
    .timeline::before { display: none; }
    .timeline-step {
      flex-direction: row;
      align-items: flex-start;
      gap: 18px;
      text-align: left;
      padding-bottom: 24px;
      position: relative;
    }
    .timeline-step:last-child { padding-bottom: 0; }
    .timeline-step:not(:last-child)::after {
      content: "";
      position: absolute;
      left: 21px;
      top: 50px;
      bottom: 4px;
      width: 2px;
      background: repeating-linear-gradient(to bottom, var(--yellow) 0, var(--yellow) 4px, transparent 4px, transparent 10px);
    }
    .step-num {
      flex-shrink: 0;
      width: 44px; height: 44px;
      font-size: 1.2rem;
      border-width: 3px;
      box-shadow: 0 0 0 2px var(--black);
      z-index: 1;
    }
    .step-icon { font-size: 1.1rem; margin-bottom: 2px; display: inline-block; }
    .step-title { font-size: 0.95rem; margin-bottom: 4px; }
    .step-desc { font-size: 0.82rem; max-width: none; color: var(--gray-text); line-height: 1.5; }

    /* ═══════ DEPOIMENTOS - Mobile com scroll-snap centralizado ═══════ */
    .dep-header { margin-bottom: 28px; text-align: center; }
    .reviews-slider {
      margin: 0 -16px;
      overflow: hidden;
    }
    .reviews-track {
      display: flex;
      gap: 14px;
      padding: 4px 16px 14px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      transform: none !important; /* anula JS transform - usa scroll nativo */
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .reviews-track::-webkit-scrollbar { display: none; }
    .review-card {
      flex: 0 0 calc(100vw - 64px);
      max-width: 340px;
      padding: 22px 18px;
      scroll-snap-align: center;
    }
    .review-stars { font-size: 0.95rem; margin-bottom: 12px; }
    .review-text { font-size: 0.88rem; line-height: 1.55; margin-bottom: 16px; }
    .review-author { gap: 10px; }
    .review-avatar { width: 40px; height: 40px; font-size: 0.88rem; }
    .review-name { font-size: 0.88rem; }
    .review-loc { font-size: 0.72rem; }
    .slider-controls { margin-top: 20px; gap: 14px; }
    .slider-btn { width: 38px; height: 38px; font-size: 0.9rem; }

    /* ═══════ CONFIANÇA — Grid 2×2 ═══════ */
    .confianca-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px 12px;
      flex-wrap: unset;
      justify-content: center;
    }
    .confianca-divider { display: none; }
    .confianca-item {
      flex: unset;
      padding: 0;
      justify-content: flex-start;
      gap: 10px;
      align-items: center;
      max-width: 100%;
    }
    .confianca-item .ci-icon { width: 38px; height: 38px; font-size: 0.95rem; border-radius: 8px; }
    .confianca-item strong { font-size: 0.78rem; line-height: 1.2; }
    .confianca-item span { font-size: 0.7rem; line-height: 1.3; }

    /* ═══════ CTA FINAL ═══════ */
    .cta-eyebrow { font-size: 0.72rem; margin-bottom: 16px; letter-spacing: 1.2px; }
    .cta-title { font-size: 2rem; line-height: 1.05; margin-bottom: 16px; }
    .cta-sub { font-size: 0.92rem; line-height: 1.55; margin-bottom: 28px; padding: 0 4px; }
    .cta-btn-wrap { flex-direction: column; align-items: center; gap: 10px; }
    .cta-btn-wrap .btn { width: 100%; max-width: 340px; justify-content: center; padding: 16px 20px !important; font-size: 0.97rem !important; }

    /* ═══════ FAQ ═══════ */
    #faq { padding: 56px 0; }
    .faq-header { margin-bottom: 28px; text-align: center; }
    .faq-list { gap: 10px; }
    .faq-question { padding: 16px 18px; font-size: 0.92rem; gap: 12px; }
    .faq-icon { width: 26px; height: 26px; font-size: 0.95rem; }
    .faq-answer-inner { padding: 0 18px 18px; font-size: 0.85rem; line-height: 1.6; }
    .faq-item.open .faq-answer { max-height: 500px; }

    /* ═══════ FOOTER REFINADO ═══════ */
    footer { padding: 44px 0 20px; }
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 0;
      margin-bottom: 28px;
      text-align: left;
    }
    .footer-grid > div {
      padding: 22px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-grid > div:first-child { padding-top: 0; }
    .footer-grid > div:last-child { border-bottom: none; padding-bottom: 0; }

    /* Bloco da marca */
    .footer-grid > div:first-child { text-align: center; padding-bottom: 26px; }
    .footer-logo { font-size: 1.55rem; margin-bottom: 12px; justify-content: center; }
    .footer-desc { font-size: 0.87rem; line-height: 1.65; margin-bottom: 18px; max-width: 320px; margin-left: auto; margin-right: auto; }
    .footer-social { gap: 10px; justify-content: center; }
    .footer-social a { width: 38px; height: 38px; font-size: 1rem; border-radius: 10px; }

    /* Colunas de links */
    .footer-col h4 {
      font-size: 0.78rem;
      margin-bottom: 14px;
      letter-spacing: 1.2px;
      color: var(--yellow);
      opacity: 0.95;
    }
    .footer-col ul {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px 16px;
    }
    .footer-col ul li a {
      font-size: 0.85rem;
      display: block;
      padding: 4px 0;
    }

    /* Contato */
    .footer-contact-item {
      font-size: 0.86rem;
      margin-bottom: 14px;
      gap: 12px;
      align-items: flex-start;
    }
    .footer-contact-item:last-child { margin-bottom: 0; }
    .footer-contact-item .fi {
      font-size: 1rem;
      width: 28px;
      height: 28px;
      background: rgba(255,230,0,0.1);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 0;
    }

    /* Footer bottom */
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 8px;
      padding-top: 20px;
      margin-top: 4px;
    }
    .footer-bottom p { font-size: 0.78rem; }
    .footer-cnpj { font-size: 0.72rem; }

    /* ═══════ WHATSAPP FLUTUANTE ═══════ */
    .float-whatsapp { bottom: 24px; right: 24px; }
    .float-whatsapp-label { display: none; }
    .float-whatsapp-btn { width: 56px; height: 56px; }
    .float-whatsapp-btn svg { width: 30px; height: 30px; }

    /* ═══════ COOKIE BANNER NO MOBILE ═══════ */
    .cookie-banner { padding: 16px 18px 18px; }
    .cookie-inner { gap: 14px; flex-direction: column; align-items: stretch; }
    .cookie-text { font-size: 0.83rem; min-width: 0; }
    .cookie-buttons { width: 100%; gap: 8px; }
    .cookie-buttons button { flex: 1; padding: 11px 14px; font-size: 0.82rem; }

    /* ═══════ MODAIS NO MOBILE ═══════ */
    .modal-box { max-height: calc(100vh - 32px); max-height: calc(100dvh - 32px); border-radius: var(--radius); }
    .modal-overlay { padding: 16px; }
    .modal-header { padding: 18px 22px; }
    .modal-header h3 { font-size: 1.15rem; }
    .modal-body { padding: 20px 22px 24px; font-size: 0.88rem; }
    .modal-body h4 { font-size: 0.95rem; margin: 16px 0 6px; }
  }

  /* ════════════════════════════════════════
     MOBILE PEQUENO (≤ 400px)
  ════════════════════════════════════════ */
  @media (max-width: 400px) {
    .container { padding: 0 16px; }
    #novidades .novidades-header { padding-left: 16px; padding-right: 16px; }
    .hero-content { padding: 38px 16px 32px; }
    .hero-title { font-size: 1.85rem; }
    .hero-trust-item strong { font-size: 0.95rem; }
    .hero-trust-item span { font-size: 0.54rem; }
    .section-title { font-size: 1.6rem; }
    .cta-title { font-size: 1.7rem; }
    .vehicle-card { -webkit-tap-highlight-color: transparent; flex: 0 0 260px; max-width: 260px; width: 260px; }
    .vehicles-grid::before,
    .vehicles-grid::after { flex: 0 0 calc(50vw - 130px); }
    .confianca-item strong { font-size: 0.74rem; }
    .confianca-item span { font-size: 0.66rem; }
    .confianca-item .ci-icon { width: 34px; height: 34px; font-size: 0.85rem; }
    .stat-item strong { font-size: 1.3rem; }
    .header-actions a.btn { padding: 8px 11px; font-size: 0.74rem; }
    .logo { font-size: 1.2rem; }
    .logo img { height: 42px !important; }
    .logo-icon { width: 28px; height: 28px; font-size: 0.82rem; }
  }

  /* ═══════════ WHATSAPP MODAL (estilo Arujá) ═══════════ */
  .wa-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10005;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    animation: waFadeIn 0.25s ease;
  }
  .wa-modal-overlay.show {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @keyframes waFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  .wa-modal-box {
    background: var(--white);
    border-radius: 16px;
    max-width: 420px;
    width: 100%;
    padding: 28px 26px 24px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    animation: waSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  @keyframes waSlideIn {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: none; }
  }
  .wa-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f3f4f6;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
  }
  .wa-modal-close:hover { background: #e5e7eb; color: #111; }
  .wa-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #DCFCE7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
  }
  .wa-modal-box h3 {
    text-align: center;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 6px;
    font-family: var(--font-display);
  }
  .wa-modal-sub {
    text-align: center;
    font-size: 0.88rem;
    color: #6b7280;
    margin-bottom: 22px;
  }
  .wa-form-field {
    margin-bottom: 14px;
  }
  .wa-form-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
  }
  .wa-form-field input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--white);
    color: var(--black);
  }
  .wa-form-field input:focus {
    outline: none;
    border-color: #25D366;
    box-shadow: 0 0 0 3px rgba(37,211,102,0.15);
  }
  .wa-form-submit {
    width: 100%;
    padding: 14px;
    background: #25D366;
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-top: 8px;
    font-family: var(--font-body);
  }
  .wa-form-submit:hover { background: #1FBE5A; }
  .wa-form-submit:active { transform: scale(0.98); }
  .wa-modal-note {
    text-align: center;
    font-size: 0.78rem;
    color: #6b7280;
    margin-top: 14px;
  }
  @media (max-width: 480px) {
    .wa-modal-box { padding: 24px 20px 20px; }
    .wa-modal-box h3 { font-size: 1.2rem; }
    .wa-modal-icon { width: 56px; height: 56px; }
  }


/* ============================================================
   PENTE FINO - Correções de acessibilidade e performance
   ============================================================ */

/* Foco visível para navegação por teclado (acessibilidade) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #2196F3;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Botões com foco específico (mantém visual mas indica) */
.btn:focus-visible {
  outline: 3px solid #2196F3;
  outline-offset: 3px;
}

/* Performance: will-change para elementos fixed que se movem */
.float-whatsapp,
.cookie-banner {
  will-change: transform, opacity;
}

/* Performance: melhorar parallax e elementos animados */
.hero-bg {
  will-change: transform;
  transform: translateZ(0); /* força aceleração GPU */
}

/* Mobile: corrigir tap highlight feio do safari */
a, button {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.05);
  touch-action: manipulation; /* remove delay de 300ms em mobile */
}

/* Mobile: garantir que botões sejam grandes o suficiente pra dedo (44x44px mínimo) */
@media (max-width: 768px) {
  .btn {
    min-height: 44px;
  }
  .hamburger,
  .modal-close,
  .mobile-nav-close,
  .wa-modal-close {
    min-width: 44px;
    min-height: 44px;
  }
}

/* Reduz animações pra quem preferir (acessibilidade) */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg {
    transform: none !important;
  }
}

/* Print: deixar site imprimível (caso alguém imprima a página) */
@media print {
  .float-whatsapp,
  .hamburger,
  .cookie-banner,
  .mobile-nav,
  .mobile-nav-overlay,
  header nav,
  footer .footer-social {
    display: none !important;
  }
  body {
    color: #000;
    background: #fff;
  }
  a {
    color: #000;
    text-decoration: underline;
  }
}

/* Imagens: prevenir layout shift (placeholder cinza enquanto carrega) */
/* Exclui logos e imagens transparentes que devem ter fundo limpo */
img:not(.no-bg):not([src*="logo"]):not([src*=".svg"]),
picture:not(.no-bg) {
  background: #f5f5f5;
}

/* Estados disabled - feedback visual claro */
.btn:disabled,
button:disabled,
input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Selection - cor da marca quando o usuário seleciona texto */
::selection {
  background: var(--yellow);
  color: var(--black);
}
::-moz-selection {
  background: var(--yellow);
  color: var(--black);
}

/* Mobile: prevenir zoom indesejado em iOS quando focar inputs */
@media (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  textarea,
  select {
    font-size: 16px; /* iOS não dá zoom se >= 16px */
  }
}

/* Skip link pra acessibilidade (oculto até receber foco) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 99999;
  background: var(--black);
  color: var(--yellow);
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  left: 8px;
}
