/* =========================================================
   BROTHERS RENT-A-CAR — Estilos (redesign moderno)
   ========================================================= */
/*sobreVideo
   video*/

/* =========================================================
   TEMA — Claro (padrão) e Escuro (opcional, via data-theme)
   ========================================================= 
   
   word:
    search: rgba(10, 15, 30, 0.85)
    hero__bg
    .hero__overlay
    navInstallBtn
    
    */
    
  
:root,
html[data-theme="light"] {
  --navy-950: #eef0f6;
  --navy-900: #f6f7fb;
  --navy-850: #f2f3f8;
  --navy-800: #ffffff;
  --navy-700: #eef1f7;
  --navy-600: #e4e8f1;
  --navy-500: #c9d0e2;

  --blue-accent: #4a6df7;
  --blue-accent-hover: #3958e0;

  --gold: #b8892f;
  --gold-soft: #c99a3f;

  --green: #23a85a;
  --green-soft: #35c46f;
  --green-hover: #1c8f4c;

  --red: #d84457;
  --red-soft: #e35a6b;

  --text-primary: #12172a;
  --text-secondary: #4a5268;
  --text-muted: #798096;

  --border-subtle: rgba(10, 14, 30, 0.08);
  --border-strong: rgba(10, 14, 30, 0.16);
  --border-gold: rgba(184, 137, 47, 0.35);

  --header-bg: rgba(255, 255, 255, 0.82);

  --hero-scrim-1: rgba(255, 255, 255, 0.693);
  --hero-scrim-2: rgba(246, 247, 251, 0.593);
  --hero-scrim-3: rgba(246, 247, 251, 0.729);
  --hero-diagonal: rgba(255, 255, 255, 0.55);
  --hero-radial: rgba(74, 109, 247, 0.10);
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-bg-strong: rgba(255, 255, 255, 0.72);
  --stat-strip-bg: rgba(20, 24, 45, 0.06);
  --stat-bg-1: #eef1f8;
  --stat-bg-2: #e6eaf4;
  --type:rgb(240, 240, 240);

  --shadow-card: 0 20px 45px rgba(20, 24, 45, 0.10);
  --shadow-modal: 0 28px 70px rgba(20, 24, 45, 0.18);
  --shadow-glow-blue: 0 12px 30px rgba(74, 109, 247, 0.28);
  --shadow-glow-green: 0 12px 26px rgba(35, 168, 90, 0.22);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --font-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html[data-theme="dark"] {
  --navy-950: #060911;
  --navy-900: #080c18;
  --navy-850: #0a0f1e;
  --navy-800: #0d1428;
  --navy-700: #121a32;
  --navy-600: #182240;
  --navy-500: #223056;

  --gold: #e8c56b;
  --gold-soft: #f0d48f;

  --green: #35c46f;
  --green-soft: #6fe0a0;
  --green-hover: #2aab5f;

  --red: #e35a6b;
  --red-soft: #f19aa4;

  --text-primary: #f6f8fc;
  --text-secondary: #b7c1da;
  --text-muted: #7c88a7;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.18);
  --border-gold: rgba(232, 197, 107, 0.4);

  --header-bg: rgba(6, 9, 17, 0.82);

  --hero-scrim-1: rgba(6, 9, 17, 0.5);
  --hero-scrim-2: rgba(6, 9, 17, 0.82);
  --hero-scrim-3: rgba(6, 9, 17, 0.97);
  --hero-diagonal: rgba(6, 9, 17, 0.55);
  --hero-radial: rgba(74, 109, 247, 0.18);
  --glass-bg: rgba(13, 20, 40, 0.65);
  --glass-bg-strong: rgba(13, 20, 40, 0.55);
  --stat-strip-bg: #00062f25;
  --stat-bg-1: rgb(0, 0, 59);
  --stat-bg-2: rgb(0, 5, 46);
  --type:rgba(10, 15, 30, 0.85);

  --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.4);
  --shadow-modal: 0 30px 90px rgba(0, 0, 0, 0.6);
  --shadow-glow-blue: 0 12px 30px rgba(74, 109, 247, 0.35);
  --shadow-glow-green: 0 12px 26px rgba(53, 196, 111, 0.3);
}

/* A secção hero acompanha o tema claro/escuro do site (ver variáveis
   --hero-scrim-*, --glass-bg acima), mantendo sempre boa legibilidade
   sobre a foto de fundo. */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* =========================================================
   BODY — Fundo animado com esferas douradas
   ========================================================= */

body {
  position: relative;
  overflow-x: hidden;
  isolation: isolate;
  /* garante que o fundo fica sempre atrás do conteúdo */
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

/* Camada 1 — esferas douradas grandes, movimento lento e orgânico (só no tema escuro) */
html[data-theme="dark"] body::before {
  background:
    radial-gradient(circle 340px at 12% 18%, rgba(232, 197, 107, 0.14), transparent 70%),
    radial-gradient(circle 420px at 85% 12%, rgba(232, 197, 107, 0.10), transparent 70%),
    radial-gradient(circle 260px at 78% 68%, rgba(240, 212, 143, 0.12), transparent 70%),
    radial-gradient(circle 300px at 8% 78%, rgba(232, 197, 107, 0.09), transparent 70%),
    radial-gradient(circle 200px at 50% 45%, rgba(74, 109, 247, 0.08), transparent 70%);
  filter: blur(4px);
  animation: orbsDrift 26s ease-in-out infinite alternate;
}

/* Camada 2 — esferas menores, movimento em direção oposta (efeito parallax, só no tema escuro) */
html[data-theme="dark"] body::after {
  background:
    radial-gradient(circle 160px at 25% 30%, rgba(232, 197, 107, 0.16), transparent 75%),
    radial-gradient(circle 220px at 70% 80%, rgba(240, 212, 143, 0.13), transparent 75%),
    radial-gradient(circle 140px at 92% 40%, rgba(232, 197, 107, 0.15), transparent 75%),
    radial-gradient(circle 180px at 40% 92%, rgba(232, 197, 107, 0.10), transparent 75%);
  filter: blur(2px);
  animation: orbsDriftReverse 19s ease-in-out infinite alternate;
  mix-blend-mode: screen;
}

@keyframes orbsDrift {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.85;
  }

  50% {
    transform: translate(-2.5%, 3%) scale(1.06);
    opacity: 1;
  }

  100% {
    transform: translate(3%, -2%) scale(1);
    opacity: 0.9;
  }
}

@keyframes orbsDriftReverse {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translate(3%, -3.5%) scale(1.1);
    opacity: 1;
  }

  100% {
    transform: translate(-2.5%, 2.5%) scale(1);
    opacity: 0.75;
  }
}

/* "Explosão" dourada suave e pulsante, ao centro-topo da página */
body {
  background-color: var(--navy-900);
}

.gold-burst {
  position: fixed;
  top: -10%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(232, 197, 107, 0.16) 0%, rgba(232, 197, 107, 0.05) 35%, transparent 70%);
  filter: blur(10px);
  z-index: -3;
  pointer-events: none;
  animation: goldPulse 8s ease-in-out infinite;
  display: none;
}

html[data-theme="dark"] .gold-burst {
  display: block;
}

@keyframes goldPulse {

  0%,
  100% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.15);
  }
}

@media (prefers-reduced-motion: reduce) {

  body::before,
  body::after,
  .gold-burst {
    animation: none !important;
  }
}

@media (max-width: 640px) {
  .gold-burst {
    width: 500px;
    height: 500px;
  }
}

body.modal-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea {
  font-family: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--blue-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Scroll reveal ---------- */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0s);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Header ---------- main-nav__list*/
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.site-header__inner {
  display: flex;
  align-items: center;
  padding: 14px 24px;
}

.brand {
  display: flex;
  align-items: center;
  width: 100%;
}

.main-nav {
  margin-left: auto;
}

.header-actions {
  margin-left: 24px;
}

.install-fab {
  margin-left: 24px;
}

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

.brand__flag {
  width: 54px;
  height: 44px;
  object-fit: cover;
  animation: pulse 4s ease-in-out infinite;

  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.25));
}

.brand__flag {
  width: 54px;
  height: 44px;
  object-fit: cover;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 #fbca2b86);
  }

  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 10px 30px #fbcb2b80);
  }

  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 #fbcb2b00);
  }
}

.brand__logo {
  height: 40px;
  width: auto;
  border-radius: 10px;
}

.main-nav__list {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
}

.main-nav__list a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  opacity: 0.88;
  position: relative;
  transition: opacity 0.2s ease, color 0.2s ease;
}

/*container */
.main-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}

.main-nav__list a:hover {
  opacity: 1;
  color: var(--gold-soft);
}

.main-nav__list a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Language selector .site-header__inner*/
.lang-selector {
  position: relative;
}

.lang-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-700);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.lang-trigger:hover {
  border-color: var(--border-gold);
  transform: translateY(-1px);
}

.lang-trigger svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.lang-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: var(--navy-700);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 6px;
  min-width: 150px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transition: all 0.2s var(--ease);
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: none;
  color: var(--text-secondary);
  padding: 10px 10px;
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: left;
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-option:hover {
  background: var(--navy-600);
  color: var(--text-primary);
}

.lang-option.active {
  color: var(--gold);
  background: rgba(232, 197, 107, 0.1);
}

/* Round install FAB (like the reference circular button) */
.install-fab {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-accent), #6a86ff);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow-blue);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.install-fab svg {
  width: 20px;
  height: 20px;
}

.install-fab:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 16px 34px rgba(74, 109, 247, 0.5);
}

/* Alternar tema claro / escuro */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-700);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s ease, transform 0.15s ease, background 0.2s ease;
}

.theme-toggle:hover {
  border-color: var(--border-gold);
  transform: translateY(-1px);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

.theme-toggle .icon-sun {
  display: none;
}

.theme-toggle .icon-moon {
  display: block;
}

html[data-theme="dark"] .theme-toggle .icon-sun {
  display: block;
}

html[data-theme="dark"] .theme-toggle .icon-moon {
  display: none;
}

/* ---------- Botão flutuante do WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 500;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  animation: whatsappPulse 2.2s ease-in-out infinite;
  transition: transform 0.2s var(--ease);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  animation-play-state: paused;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.55);
  }

  70% {
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    animation: none;
  }
}

@media (max-width: 640px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float svg {
    width: 27px;
    height: 27px;
  }
}

/* ---------- Buttons (global hover language) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
  cursor: pointer;
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-accent), #6a86ff);
  color: #fff;
  box-shadow: var(--shadow-glow-blue);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(74, 109, 247, 0.48);
}

.btn-ghost {
  background: var(--navy-700);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn-ghost:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--blue-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(74, 109, 247, 0.25);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--green-soft), var(--green));
  color: #062b12;
  max-width: 88%;
  min-width: 250px;
  width: 88%;
  display: block;
  margin: auto;
  box-shadow: var(--shadow-glow-green);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(53, 196, 111, 0.42);
  background: linear-gradient(135deg, var(--green), var(--green-hover));
}

.btn-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-play-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-play-icon svg {
  width: 13px;
  height: 13px;
}

.btn-ghost:hover .btn-play-icon {
  background: var(--blue-accent);
  transform: scale(1.1);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero__bg {
  position: absolute;
  inset: -3%;
  background-size: cover;
  background-position: center;
  filter: blur(1.5px) saturate(1.05);
  transition: opacity 0.6s ease;
  animation: kenburns 22s ease-in-out infinite alternate;
  z-index: 0;
}

.hero__bg.fading {
  opacity: 0;
}

@keyframes kenburns {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.08) translate(-1%, -1%);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 25%, var(--hero-radial), transparent 55%),
    linear-gradient(180deg, var(--hero-scrim-1) 0%, var(--hero-scrim-2) 55%, var(--hero-scrim-3) 100%);
  z-index: 1;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--hero-diagonal) 0%, transparent 45%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 56px;
  align-items: start;
}

.hero__badge {
  display: inline-block;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: rgba(232, 197, 107, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 26px;
}

/*main-nav*/
.hero__title {
  font-size: clamp(0.6rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 36px;
}

.hero__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.feature-chip {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--glass-bg);
  border: 1px solid var(--border-subtle);
  border: solid 1px rgba(255, 217, 0, 0.4);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  backdrop-filter: blur(8px);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.feature-chip:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 217, 0, 0.6);
  box-shadow: 0 0 10px rgba(255, 217, 0, 0.35);
  background: var(--glass-bg-strong);
}

.feature-chip__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-chip__icon svg {
  width: 19px;
  height: 19px;
}

.feature-chip__icon--yellow {
  background: rgba(240, 200, 60, 0.14);
  color: #f0c83c;
}

.feature-chip__icon--blue {
  background: rgba(74, 109, 247, 0.16);
  color: #6a86ff;
}

.feature-chip__icon--green {
  background: rgba(53, 196, 111, 0.16);
  color: var(--green-soft);
}

.feature-chip__icon--red {
  background: rgba(227, 90, 107, 0.16);
  color: var(--red-soft);
}

.feature-chip__title {
  font-weight: 700;
  font-size: 0.97rem;
  margin-bottom: 5px;
}

.feature-chip__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero card (glassmorphism) */
.hero__card {
  background: var(--glass-bg-strong);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px) saturate(1.3);
  transition: transform 0.3s var(--ease);
}

.hero__card:hover {
  transform: translateY(-4px);
}

.hero__card-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.hero__card-dots {
  display: flex;
  gap: 6px;
}

.hero__card-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--navy-500);
}

.hero__card-tag {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero__card-image {
  height: 260px;
  background-image: url('../images/paisagem-1.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: opacity 0.4s ease;
}

.hero__card-image.fading {
  opacity: 0;
}

.hero__card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 9, 17, 0.05) 30%, rgba(6, 9, 17, 0.9) 100%);
}

.hero__card-overlay-text {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.hero__card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--stat-strip-bg);
}

.hero__stat {
  background: linear-gradient(to right, var(--stat-bg-1), var(--stat-bg-2), var(--stat-bg-1));
  padding: 18px 16px;
  text-align: center;
  margin: 5px;
  border-radius: 20px;
  border: solid 2px rgba(255, 217, 0, 0);
  transition: all 2s ease;
}

/*.hero__card-stats*/
.hero__stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.hero__stat-value {
  font-size: 1.15rem;
  font-weight: 800;
}

#navInstallBtn {
  background-image: url("https://media4.giphy.com/media/v1.Y2lkPTc5MGI3NjExdW5oY3RwOHAwaTV4MjNoczkxMTBiMWx3YWZzcXUxeXlhcHFjbTVteCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/jtXxlGob7X9wJlOfCc/giphy.gif");
  background-size: 100% 100%;
  min-width: 35px;
  margin: 0;
  background-repeat: no-repeat;

}

.hero__card-cta {
  display: block;
  width: calc(100% - 32px);
  margin: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(74, 109, 247, 0.1);
  border: 1px solid var(--border-gold);
  text-align: center;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s ease;
}

.hero__card-cta:hover {
  background: rgba(74, 109, 247, 0.16);
  box-shadow: 0 16px 34px rgba(232, 197, 107, 0.16);
}

.hero__card-cta-label {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}

.hero__card-cta-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.floating {
  animation: floaty 3.2s ease-in-out infinite;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ---------- Quem Somos (tabs) ---------- */
.quemsomos {
  padding: 90px 0 30px;
  border-top: 1px solid var(--border-subtle);
}

.quemsomos__title {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 28px;
}

.quemsomos__tabs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.quemsomos__tab {
  width: 24%;
  padding: 15px 26px;
  border-radius: var(--radius-md);
  background: var(--navy-800);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s var(--ease);
}

.quemsomos__tab:hover {
  transform: translateY(-3px);
  border-color: var(--border-gold);
}

.quemsomos__tab.active {
  border-color: var(--gold);
  background: rgba(232, 197, 107, 0.08);
  box-shadow: 0 10px 26px rgba(232, 197, 107, 0.14);
}

.quemsomos__panel {
  background: var(--navy-800);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.35s var(--ease), opacity 0.3s ease, transform 0.3s ease, padding 0.35s var(--ease);
}

.quemsomos__panel.open {
  max-height: 400px;
  opacity: 1;
  transform: translateY(0);
  padding: 28px;
}

.quemsomos__panel p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.75;
}

/* ---------- Frota ---------- */
.frota {
  padding: 60px 0 90px;
}

.frota__panel {
  background: var(--navy-800);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 38px;
}

.frota__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.frota__title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.frota__subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.frota__badge {
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
  padding-top: 6px;
}

.frota__controls {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.frota__search {
  flex: 1;
  min-width: 240px;
  background: var(--navy-700);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text-primary);
  font-size: 0.92rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.frota__search::placeholder {
  color: var(--text-muted);
}

.frota__search:focus {
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 3px rgba(74, 109, 247, 0.15);
}

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

.frota__state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  grid-column: 1 / -1;
}

/* Car card */
.car-card {
  background: var(--navy-900);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.car-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  background-color: var(--navy-800);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(232, 197, 107, 0.18);
}

.car-card__image {
  position: relative;
  height: 220px;
  background: var(--navy-700);
  overflow: hidden;
}

.car-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.car-card:hover .car-card__image img {
  transform: scale(1.07);
}

.car-card__image.no-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.car-card__no-image-label {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.car-card__badge {
  position: absolute;
  top: 14px;
  z-index: 2;
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.car-card__badge--tag {
  left: 14px;
  background: var(--type);
  color: var(--text-secondary);
  backdrop-filter: blur(4px);
}

.car-card__badge--status {
  right: 14px;
}

.car-card__badge--status.is-free {
  background: rgba(53, 196, 111, 0.2);
  color: var(--green-soft);
  border: 1px solid rgba(53, 196, 111, 0.42);
}

.car-card__badge--status.is-rented {
  background: rgba(227, 90, 107, 0.2);
  color: var(--red-soft);
  border: 1px solid rgba(227, 90, 107, 0.42);
}

.car-card__body {
  padding: 24px 24px 6px;
  flex: 1;
}

.car-card__name {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.car-card__owner {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.car-card__divider {
  height: 1px;
  background: var(--border-subtle);
  margin-bottom: 18px;
}

.car-card__row {
  margin-bottom: 15px;
}

.car-card__label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.car-card__value {
  font-size: 0.95rem;
  font-weight: 700;
}

.text-free {
  color: var(--green-soft);
}

.text-rented {
  color: var(--red-soft);
}

.car-card__price {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--gold);
}

.car-card__price-unit {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.car-card__reserve {
  margin: 18px 24px 24px;
  border-radius: var(--radius-sm);
}

/* ---------- Contacto / Documentos ---------- */
.contact {
  padding: 20px 0 90px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.contact__panel {
  background: var(--navy-800);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 42px;
}

.contact__title {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact__desc {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 26px;
}

.contact__brand-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--navy-700);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 26px;
}

.contact__brand-logo {
  width: 146px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
}

.contact__brand-name {
  font-weight: 800;
  color: var(--gold);
  font-size: 1rem;
}

.contact__brand-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.contact__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.documentos {
  background: var(--navy-800);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 42px;
}

.documentos__title {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.documentos__subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 26px;
}

.documentos__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--navy-700);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-bottom: 16px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.documentos__item:last-child {
  margin-bottom: 0;
}

.documentos__item:hover {
  transform: translateX(4px);
  border-color: var(--border-gold);
}

.documentos__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--navy-600);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.documentos__icon svg {
  width: 21px;
  height: 21px;
}

.documentos__item-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}

.documentos__item-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
}

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

.footer__logo {
  height: 44px;
  width: auto;
  border-radius: 10px;
  margin-bottom: 16px;
}

.footer__desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 360px;
}

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

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-700);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.2s var(--ease), border-color 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-3px);
  border-color: var(--border-gold);
}

.social-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.footer__heading {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.footer__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.footer__list .icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.footer__list a {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.2s ease;
}

.footer__list a:hover {
  color: var(--gold-soft);
}

.footer__list a:hover .icon-circle {
  background: var(--blue-accent);
}

.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ---------- Modals ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 12, 0.78);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--navy-800);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-modal);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s var(--ease);
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 26px;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--navy-700);
}

.modal__title {
  font-size: 1.28rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.modal__subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.modal__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-600);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.modal__close:hover {
  background: var(--red);
  transform: rotate(90deg);
}

.modal__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  background: #000;
  display: block;
}

.modal__video-caption {
  padding: 18px 26px 26px;
}

.modal__video-caption-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.modal__video-caption-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Reserve form */
.reserve-modal .modal {
  max-width: 620px;
}

.reserve-form {
  padding: 26px;
  display: grid;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  background: var(--navy-700);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text-primary);
  font-size: 0.92rem;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 3px rgba(74, 109, 247, 0.15);
}

.form-field input[readonly] {
  color: var(--text-secondary);
  cursor: not-allowed;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field textarea {
  resize: vertical;
  min-height: 90px;
}

.reserve-form__note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* ---------- PWA install banner ---------- */
.pwa-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 460px;
  margin: 0 auto;
  background: var(--navy-700);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 150;
  box-shadow: var(--shadow-modal);
  animation: slideUpFade 0.4s var(--ease);
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pwa-banner__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--navy-600);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pwa-banner__icon img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.pwa-banner__text {
  flex: 1;
}

.pwa-banner__title {
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 3px;
}

.pwa-banner__desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.pwa-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pwa-banner__actions .btn {
  padding: 9px 16px;
  font-size: 0.82rem;
}

/* ---------- Responsivo ---------- */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__card {
    max-width: 560px;
  }

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

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

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

@media (max-width: 860px) {
  .main-nav__list {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }

  .site-header__inner {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero {
    padding: 60px 0 50px;
  }

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

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

  .frota__panel {
    padding: 22px;
  }

  .contact__panel,
  .documentos {
    padding: 26px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero__card-stats {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .quemsomos__tabs {
    gap: 10px;
  }

  .quemsomos__tab {
    padding: 12px 18px;
    font-size: 0.88rem;
    flex: 1 1 calc(50% - 10px);
  }

  .pwa-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .pwa-banner__actions {
    flex-direction: row;
  }

  .pwa-banner__actions .btn {
    flex: 1;
  }

  #letras {
    font-size: 100px;
  }
}

.container {
  padding: 10px;
}

#reserveModal .modal::-webkit-scrollbar {
  display: none;
}

#letras {
  height: 130px;
  font-size: 30px;
}

#sobreVideo {
  width: 100%;
  height: 100%;
}

.quick-reserve-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 9, 20, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
  opacity: 0;
  animation: qrOverlayFade 0.25s ease forwards;
}

.quick-reserve-overlay.closing {
  animation: qrOverlayFadeOut 0.2s ease forwards;
}

@keyframes qrOverlayFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes qrOverlayFadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.quick-reserve-box {
  position: relative;
  background: linear-gradient(160deg, #141a2e 0%, #0f1424 100%);
  color: #fff;
  width: 100%;
  max-width: 380px;
  border-radius: 16px;
  padding: 30px 26px 26px;
  border: 1px solid rgba(79, 109, 245, 0.25);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 40px rgba(79, 109, 245, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateY(24px) scale(0.96);
  opacity: 0;
  animation: qrBoxIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

.quick-reserve-overlay.closing .quick-reserve-box {
  animation: qrBoxOut 0.2s ease forwards;
}

@keyframes qrBoxIn {
  from {
    transform: translateY(24px) scale(0.96);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes qrBoxOut {
  from {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  to {
    transform: translateY(14px) scale(0.97);
    opacity: 0;
  }
}

.quick-reserve-box h3 {
  margin: 0 0 4px;
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ffffff, #c9d2ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.quick-reserve-box input,
.quick-reserve-box textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 11px 14px;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  resize: vertical;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.quick-reserve-box input::placeholder,
.quick-reserve-box textarea::placeholder {
  color: #7b839c;
}

.quick-reserve-box input:focus,
.quick-reserve-box textarea:focus {
  outline: none;
  border-color: #4f6df5;
  background: rgba(79, 109, 245, 0.06);
  box-shadow: 0 0 0 3px rgba(79, 109, 245, 0.18);
}

#qrSendBtn {
  background: linear-gradient(135deg, #5b74ff, #4f6df5);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(79, 109, 245, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

#qrSendBtn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(79, 109, 245, 0.45);
}

#qrSendBtn:active {
  transform: translateY(0);
}

#qrCloseBtn {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  border-radius: 50%;
  color: #9aa3c0;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

#qrCloseBtn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: rotate(90deg);
}

#qrCarName {
  background-color: rgba(22, 22, 116, 0.275);
  color: white;
  padding: 10px;
  border-radius: 10px;
}

@media (max-width: 640px) {

  .reveal-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

}

/*brand__flag
contact__brand-logo
btn-whatsapp 
hero__title
feature-
car-card__body
hero__stat
brand__flag
quemsomos__tab
modal
btn btn-whatsapp
100px
btn