@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Barlow:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&display=swap');

/* ===== VARIÁVEIS ===== */
:root {
  --black:       #070810;
  --dark:        #0c1022;
  --dark-2:      #121830;
  --dark-3:      #1a2040;
  --dark-4:      #222850;
  --mid:         #3a4580;
  --gray:        #7a7a8a;
  --gray-light:  #cccccc;
  --light:       #f3f4f8;
  --white:       #ffffff;

  /* Cores exatas do logo 4 Marcos Motos */
  --blue:        #1a2db5;
  --blue-dark:   #0e1d8c;
  --blue-light:  #2e44d4;
  --gold:        #f8b700;
  --gold-light:  #ffd040;
  --gold-dark:   #d49a00;

  --font:        'Inter', sans-serif;
  --font-display:'Barlow', sans-serif;

  --shadow-sm:   0 2px 12px rgba(0,0,0,0.18);
  --shadow:      0 8px 40px rgba(0,0,0,0.3);
  --shadow-lg:   0 24px 70px rgba(0,0,0,0.5);
  --shadow-gold: 0 8px 32px rgba(248,183,0,0.35);
  --shadow-blue: 0 8px 32px rgba(26,45,181,0.3);

  --radius:      6px;
  --radius-lg:   12px;
  --radius-xl:   20px;
  --transition:  0.28s cubic-bezier(.4,0,.2,1);
  --border:      1px solid rgba(255,255,255,0.08);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--white); color: var(--dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; }

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.25rem; font-weight: 700; }
p { color: var(--gray); line-height: 1.7; }

/* ===== UTILITÁRIOS ===== */
.container    { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section      { padding: 100px 0; }
.text-white   { color: var(--white) !important; }
.text-gold    { color: var(--gold) !important; }
.text-center  { text-align: center; }

.label-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.label-tag::before { content: ''; display: block; width: 24px; height: 2px; background: var(--gold); }

.section-header { margin-bottom: 64px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p  { font-size: 1.05rem; max-width: 560px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 0 34px; height: 52px;
  font-family: var(--font); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; cursor: pointer; border-radius: var(--radius);
  transition: var(--transition); white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.1); opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }

.btn-gold     { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); color: var(--black); box-shadow: 0 4px 20px rgba(248,183,0,0.25); }
.btn-gold:hover { box-shadow: var(--shadow-gold); }

.btn-dark     { background: var(--dark-2); color: var(--white); }
.btn-dark:hover { background: var(--dark-3); }

.btn-outline  { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); box-shadow: 0 0 20px rgba(248,183,0,0.1); }

.btn-outline-dark { background: transparent; color: var(--dark); border: 1.5px solid rgba(0,0,0,0.15); }
.btn-outline-dark:hover { border-color: var(--blue); color: var(--blue); }

.btn-blue     { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%); color: var(--white); box-shadow: var(--shadow-blue); }
.btn-blue:hover { box-shadow: 0 12px 40px rgba(26,45,181,0.45); }

.btn-wpp      { background: linear-gradient(135deg, #25D366 0%, #1da851 100%); color: var(--white); }
.btn-wpp:hover { box-shadow: 0 8px 28px rgba(37,211,102,0.4); }

.btn-sm       { height: 40px; padding: 0 20px; font-size: 0.76rem; border-radius: var(--radius); }
.btn-lg       { height: 58px; padding: 0 48px; font-size: 0.9rem; border-radius: var(--radius); }
.btn-full     { width: 100%; justify-content: center; }

/* ===== LOGO IMG ===== */
.logo { display: flex; align-items: center; }
.logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
  background: transparent;
  padding: 0;
  filter: drop-shadow(0 2px 12px rgba(255,255,255,0.18));
  transition: filter 0.25s ease, transform 0.25s ease;
}
.logo-img:hover {
  filter: drop-shadow(0 4px 20px rgba(248,183,0,0.45));
  transform: scale(1.03);
}
.sidebar-head .logo-img { height: 44px; }
.auth-left .logo-img  { height: 58px; margin-bottom: 44px; }
.footer .logo-img     { height: 58px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 80px;
  transition: var(--transition);
}
.navbar.transparent .navbar-inner { background: transparent; }
.navbar.solid .navbar-inner,
.navbar.scrolled .navbar-inner {
  background: rgba(7,8,16,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.navbar.scrolled .navbar-inner::after,
.navbar.solid .navbar-inner::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  opacity: 0.4;
}

/* LOGO */
.logo { display: flex; align-items: center; gap: 14px; }
.logo-mark {
  width: 42px; height: 42px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
}
.logo-mark svg { width: 22px; height: 22px; fill: var(--black); }
.logo-name  { font-family: var(--font-display); font-size: 1.1rem; font-weight: 900; color: var(--white); letter-spacing: 0.02em; }
.logo-sub   { font-size: 0.65rem; font-weight: 500; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; margin-top: -2px; }

/* NAV LINKS */
.nav-links  { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  transition: var(--transition); position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--gold); transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

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

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }
.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); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26,45,181,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(248,183,0,0.08) 0%, transparent 60%),
    linear-gradient(160deg, #060810 0%, #0c1020 50%, #060810 100%);
}
.hero-grid-overlay {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content-wrap {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 480px;
  gap: 60px; align-items: center;
  padding: 180px 40px 100px;
  max-width: 1280px; margin: 0 auto; width: 100%;
}
.hero-moto {
  position: relative; display: flex; align-items: center; justify-content: center;
  padding-bottom: 20px;
}
.hero-moto img {
  width: 110%; max-width: 620px; position: relative; z-index: 2;
  filter: drop-shadow(0 40px 80px rgba(26,45,181,0.55))
          drop-shadow(0 8px 24px rgba(0,0,0,0.6))
          drop-shadow(0 0 100px rgba(248,183,0,0.12));
  animation: hero-moto-float 4s ease-in-out infinite;
  transform-origin: center bottom;
}
.hero-moto-glow {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 80%; height: 50px;
  background: radial-gradient(ellipse, rgba(26,45,181,0.6) 0%, transparent 70%);
  filter: blur(16px);
  z-index: 1;
  animation: hero-moto-float 4s ease-in-out infinite;
}
@keyframes hero-moto-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}
.hero-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1.5px; background: var(--gold); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.0;
  color: var(--white); margin-bottom: 28px;
  letter-spacing: -0.03em;
}
.hero-title em {
  font-style: normal; color: var(--gold);
  display: block;
}
.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.55);
  max-width: 480px; margin-bottom: 44px; line-height: 1.8;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
  display: flex; gap: 40px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 900;
  color: var(--white); line-height: 1;
}
.hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.1em; }

/* HERO CARD FLUTUANTE */
.hero-aside { display: flex; flex-direction: column; gap: 16px; align-self: end; }
.hero-moto-showcase {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  padding: 32px; position: relative; overflow: hidden;
}
.hero-moto-showcase::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.showcase-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.showcase-model { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--white); margin-bottom: 6px; }
.showcase-desc { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
.showcase-icon { font-size: 72px; text-align: center; margin: 0; line-height: 1; }
.showcase-price-row { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); }
.showcase-price { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; }
.showcase-price span { font-size: 0.85rem; font-weight: 400; color: rgba(255,255,255,0.4); }
.showcase-badge { background: var(--blue); color: var(--white); font-size: 0.7rem; font-weight: 700; padding: 4px 10px; letter-spacing: 0.08em; text-transform: uppercase; }

.hero-mini-card {
  background: var(--gold);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
}
.hero-mini-card .icon { font-size: 1.6rem; }
.hero-mini-card-text strong { font-family: var(--font-display); font-size: 0.95rem; font-weight: 800; color: var(--black); display: block; }
.hero-mini-card-text span { font-size: 0.78rem; color: rgba(0,0,0,0.6); }

/* SCROLL INDICATOR */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2; opacity: 0.4;
}
.hero-scroll span { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--white), transparent); animation: scrollpulse 1.6s ease-in-out infinite; }
@keyframes scrollpulse { 0%,100%{opacity:.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.2)} }

/* ===== MARQUEE / BRAND BAR ===== */
.brand-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0; overflow: hidden;
}
.marquee-track { display: flex; gap: 60px; animation: marquee 20s linear infinite; white-space: nowrap; }
.marquee-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.3); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; flex-shrink: 0; }
.marquee-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===== DIFERENCIAIS ===== */
.diferenciais { background: var(--light); }
.diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #e0e0e8; }
.diff-card {
  background: var(--white); padding: 48px 36px;
  position: relative; overflow: hidden;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
}
.diff-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
}
.diff-card:hover { background: var(--dark); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.diff-card:hover h3, .diff-card:hover p, .diff-card:hover .diff-num { color: var(--white); }
.diff-card:hover::before { transform: scaleX(1); }
.diff-card:hover p { color: rgba(255,255,255,0.45); }
.diff-num {
  font-family: var(--font-display); font-size: 3.8rem; font-weight: 900;
  color: #e8e9f0; line-height: 1; margin-bottom: 20px;
  transition: var(--transition);
}
.diff-icon { font-size: 1.8rem; margin-bottom: 18px; }
.diff-card h3 { color: var(--dark); margin-bottom: 10px; font-size: 1.05rem; letter-spacing: -0.01em; transition: var(--transition); }
.diff-card p  { font-size: 0.88rem; line-height: 1.7; transition: var(--transition); }

/* ===== FROTA (PÁGINA INICIAL) ===== */
.frota { background: var(--dark); }
.frota .section-header h2 { color: var(--white); }
.frota .label-tag { color: var(--gold); }
.frota-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 0 0 20px; }

.moto-card {
  background: var(--dark-2);
  position: relative; overflow: hidden; cursor: pointer;
  border-radius: var(--radius-lg);
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  border: 1px solid rgba(255,255,255,0.06);
}
.moto-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(248,183,0,0.08) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.35s;
  pointer-events: none; z-index: 0;
}
.moto-card:hover { border-color: rgba(248,183,0,0.3); transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(248,183,0,0.15); }
.moto-card:hover::before { opacity: 1; }
.moto-card-img {
  height: 230px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(26,45,181,0.2), rgba(248,183,0,0.05));
  font-size: 90px; position: relative; overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.moto-card-img::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(26,45,181,0.25), transparent 65%);
}
.moto-tag {
  position: absolute; top: 14px; left: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 5px 16px;
  border-radius: 0 4px 4px 0;
  box-shadow: 2px 2px 12px rgba(248,183,0,0.3);
}
.moto-body { padding: 28px; position: relative; z-index: 1; }
.moto-model { font-family: var(--font-display); font-size: 1.25rem; font-weight: 900; color: var(--white); margin-bottom: 6px; letter-spacing: -0.01em; }
.moto-desc { font-size: 0.84rem; color: rgba(255,255,255,0.38); margin-bottom: 20px; line-height: 1.6; }
.moto-specs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 24px; }
.moto-spec { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.07); padding: 5px 12px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.08); }
.moto-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.07); }
.moto-price-label { font-size: 0.7rem; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.1em; }
.moto-price-val { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--gold); line-height: 1.1; }
.moto-price-period { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ===== CARROSSEL FROTA ===== */
.carousel-wrap {
  position: relative; overflow: hidden;
  background: var(--black);
  min-height: 560px;
}
.carousel-slide {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 1fr 480px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.9s cubic-bezier(.4,0,.2,1);
}
.carousel-slide.active {
  opacity: 1; pointer-events: all; position: relative;
}
.carousel-slide.exit {
  opacity: 0; position: absolute; inset: 0; pointer-events: none;
}

/* IMAGEM */
.carousel-img {
  position: relative; overflow: hidden; min-height: 560px;
}
.carousel-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 6s ease;
  transform: scale(1.04);
}
.carousel-slide.active .carousel-img img { transform: scale(1); }
.carousel-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(7,8,16,0) 50%, var(--black) 100%),
              linear-gradient(to top, rgba(7,8,16,0.6) 0%, transparent 50%);
}
.carousel-badge {
  position: absolute; top: 32px; left: 32px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  color: var(--black); font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 4px;
  box-shadow: 0 4px 16px rgba(248,183,0,0.4);
}

/* INFO LATERAL */
.carousel-info {
  background: var(--black);
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 56px 60px 48px;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.carousel-brand {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.carousel-model {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; color: var(--white); line-height: 1;
  margin-bottom: 18px; letter-spacing: -0.02em;
}
.carousel-desc {
  font-size: 0.92rem; color: rgba(255,255,255,0.45);
  line-height: 1.75; margin-bottom: 36px; max-width: 340px;
}
.carousel-specs {
  display: flex; gap: 0; margin-bottom: 40px;
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius);
  overflow: hidden;
}
.cs-item {
  flex: 1; padding: 14px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.cs-item:last-child { border-right: none; }
.cs-val {
  display: block; font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 900; color: var(--white); line-height: 1;
}
.cs-lab {
  display: block; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); margin-top: 5px;
}

/* CONTROLES */
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); font-size: 1.2rem; cursor: pointer;
  transition: var(--transition); z-index: 10; backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
}
.carousel-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.carousel-prev { left: 28px; }
.carousel-next { right: 28px; }

/* DOTS */
.carousel-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.cdot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: none; cursor: pointer;
  transition: all 0.3s ease; padding: 0;
}
.cdot.active { background: var(--gold); transform: scale(1.3); }

/* BARRA DE PROGRESSO */
.carousel-progress {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: rgba(255,255,255,0.08); z-index: 10;
}
.carousel-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.1s linear;
}

/* ===== COMO FUNCIONA ===== */
.como-funciona { background: var(--white); }
.steps-wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps-wrap::before {
  content: ''; position: absolute; top: 36px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); z-index: 0;
}
.step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--dark); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; position: relative;
}
.step-circle-num {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--gold);
}
.step h3 { color: var(--dark); margin-bottom: 10px; font-size: 1rem; }
.step p   { font-size: 0.88rem; }

/* ===== DEPOIMENTOS ===== */
.depoimentos { background: var(--dark); }
.depoimentos .section-header h2 { color: var(--white); }
.dep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dep-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px; position: relative;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
}
.dep-card:hover { border-color: rgba(248,183,0,0.3); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.dep-card::before {
  content: '\201C'; position: absolute; top: 18px; right: 26px;
  font-family: Georgia, serif; font-size: 5.5rem; color: rgba(248,183,0,0.08); line-height: 1;
}
.dep-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 4px; margin-bottom: 18px; }
.dep-text { font-size: 0.92rem; color: rgba(255,255,255,0.5); margin-bottom: 28px; font-style: italic; line-height: 1.85; }
.dep-author { display: flex; align-items: center; gap: 14px; }
.dep-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 900; color: var(--white); flex-shrink: 0;
  border: 2px solid rgba(248,183,0,0.2);
}
.dep-name  { font-weight: 700; color: var(--white); font-size: 0.88rem; }
.dep-role  { font-size: 0.76rem; color: rgba(255,255,255,0.28); margin-top: 3px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--gold);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(0,0,0,0.07);
}
.cta-banner .container { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-banner h2 { font-family: var(--font-display); font-size: 2.4rem; color: var(--black); }
.cta-banner p  { color: rgba(0,0,0,0.6); margin-top: 8px; }
.cta-banner-actions { display: flex; gap: 14px; flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer { background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-top { padding: 80px 0 60px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; }
.footer-brand .logo-name { color: var(--white); }
.footer-about { font-size: 0.88rem; color: rgba(255,255,255,0.35); margin: 20px 0 28px; line-height: 1.8; }
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); }
.social-icon svg { display: block; }
.social-ig:hover { border-color: #E1306C !important; color: #E1306C !important; background: rgba(225,48,108,0.08); }
.social-fb:hover { border-color: #1877F2 !important; color: #1877F2 !important; background: rgba(24,119,242,0.08); }
.social-tt:hover { border-color: #69C9D0 !important; color: #69C9D0 !important; background: rgba(105,201,208,0.08); }
.footer-col h5 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-row { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact-row .icon { font-size: 0.9rem; color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-row p, .footer-contact-row a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-contact-row a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.25); transition: var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* ===== WHATSAPP FLOAT ===== */
.wpp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
}
.wpp-float a {
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
}
.wpp-float a:hover { transform: scale(1.12); box-shadow: 0 12px 32px rgba(37,211,102,0.65); }
.wpp-float svg { display: block; }

/* ===== PAGE BANNER ===== */
.page-banner {
  background: var(--black);
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,87,184,0.12), transparent);
}
.page-banner::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { color: var(--white); margin: 12px 0 14px; }
.page-banner p   { color: rgba(255,255,255,0.45); font-size: 1rem; }
.breadcrumb { display: flex; gap: 8px; margin-top: 20px; font-size: 0.78rem; color: rgba(255,255,255,0.3); align-items: center; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.15); }

/* ===== CATÁLOGO ===== */
.filter-bar {
  background: var(--dark); border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky; top: 76px; z-index: 100;
}
.filter-bar .container { display: flex; align-items: center; gap: 8px; padding: 16px 40px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 20px; background: transparent;
  border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: var(--transition); font-family: var(--font);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--black); }
.filter-count { margin-left: auto; font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* ===== ANIMAÇÃO FAROL ===== */
@keyframes headlight-pulse {
  0%   { opacity: 0; transform: scale(0.8); }
  10%  { opacity: 1; transform: scale(1.1); }
  30%  { opacity: 0.9; transform: scale(1); }
  50%  { opacity: 0; transform: scale(0.8); }
  60%  { opacity: 0.7; transform: scale(1.05); }
  80%  { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.8); }
}
@keyframes beam-sweep {
  0%, 100% { opacity: 0; width: 0; }
  15%, 75%  { opacity: 0.25; width: 160px; }
  50%       { opacity: 0; }
}
@keyframes card-glow {
  0%, 100% { box-shadow: none; }
  15%, 75%  { box-shadow: 0 0 40px rgba(248,183,0,0.15); }
  50%       { box-shadow: none; }
}

.moto-card-img,
.catalog-card-img {
  position: relative;
  overflow: hidden;
}

/* Farol - bolinha de luz */
.headlight {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff9c4 0%, #ffe066 40%, rgba(255,220,0,0) 75%);
  box-shadow: 0 0 18px 8px rgba(255,230,0,0.7), 0 0 40px 16px rgba(255,200,0,0.3);
  top: 50%;
  right: 22%;
  transform: translateY(-50%);
  animation: headlight-pulse 2.8s ease-in-out infinite;
  z-index: 4;
  pointer-events: none;
}

/* Feixe de luz saindo do farol */
.headlight-beam {
  position: absolute;
  top: 50%;
  right: calc(22% + 10px);
  transform: translateY(-50%) rotate(0deg);
  height: 14px;
  width: 0;
  background: linear-gradient(to left, rgba(255,240,100,0), rgba(255,240,100,0.22));
  border-radius: 0 8px 8px 0;
  animation: beam-sweep 2.8s ease-in-out infinite;
  z-index: 3;
  pointer-events: none;
}

/* Brilho geral no card quando o farol acende */
.moto-card { animation: card-glow 2.8s ease-in-out infinite; }
.catalog-card { animation: card-glow 2.8s ease-in-out infinite; }

/* Delay diferente para cada card */
.moto-card:nth-child(2), .catalog-card:nth-child(2) { animation-delay: 0.7s; }
.moto-card:nth-child(2) .headlight, .catalog-card:nth-child(2) .headlight { animation-delay: 0.7s; }
.moto-card:nth-child(2) .headlight-beam, .catalog-card:nth-child(2) .headlight-beam { animation-delay: 0.7s; }
.moto-card:nth-child(3), .catalog-card:nth-child(3) { animation-delay: 1.4s; }
.moto-card:nth-child(3) .headlight, .catalog-card:nth-child(3) .headlight { animation-delay: 1.4s; }
.moto-card:nth-child(3) .headlight-beam, .catalog-card:nth-child(3) .headlight-beam { animation-delay: 1.4s; }
.moto-card:nth-child(4), .catalog-card:nth-child(4) { animation-delay: 2.1s; }
.moto-card:nth-child(4) .headlight, .catalog-card:nth-child(4) .headlight { animation-delay: 2.1s; }
.moto-card:nth-child(4) .headlight-beam, .catalog-card:nth-child(4) .headlight-beam { animation-delay: 2.1s; }

/* Para no hover */
.moto-card:hover .headlight,
.catalog-card:hover .headlight { animation: none; opacity: 1; }
.moto-card:hover .headlight-beam,
.catalog-card:hover .headlight-beam { animation: none; opacity: 0.3; width: 160px; }
.moto-card:hover,
.catalog-card:hover { animation: none !important; }

/* Imagem real da moto */
.moto-real-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.moto-card:hover .moto-real-img,
.catalog-card:hover .moto-real-img { transform: scale(1.04); }

/* CATÁLOGO GRID */
.catalog-section { background: var(--dark); padding: 60px 0 100px; }
.catalog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* CARD CATÁLOGO */
.catalog-card {
  background: var(--dark-2); position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
}
.catalog-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(248,183,0,0.06) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.35s; pointer-events: none; z-index: 0;
}
.catalog-card:hover { border-color: rgba(248,183,0,0.25); transform: translateY(-6px); box-shadow: 0 28px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(248,183,0,0.12); }
.catalog-card:hover::before { opacity: 1; }
.catalog-card-img {
  height: 260px; display: flex; align-items: center; justify-content: center;
  font-size: 100px; position: relative; overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.catalog-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--dark-2) 0%, transparent 55%); }
.catalog-card-badge {
  position: absolute; top: 0; left: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-size: 0.64rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 6px 16px; z-index: 2;
  border-radius: 0 0 6px 0;
  box-shadow: 2px 2px 12px rgba(248,183,0,0.3);
}
.catalog-card-body { padding: 28px 32px 32px; position: relative; z-index: 1; }
.catalog-card-brand { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.catalog-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; color: var(--white); margin-bottom: 10px; letter-spacing: -0.01em; }
.catalog-card-desc { font-size: 0.86rem; color: rgba(255,255,255,0.38); margin-bottom: 22px; line-height: 1.72; }
.catalog-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 26px; }
.c-spec { display: flex; flex-direction: column; padding: 10px 14px; background: rgba(255,255,255,0.04); border-radius: 6px; border: 1px solid rgba(255,255,255,0.06); }
.c-spec-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.22); margin-bottom: 4px; }
.c-spec-val { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.78); }
.catalog-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.07);
}
.c-price-from { font-size: 0.67rem; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.1em; }
.c-price { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--gold); }
.c-price small { font-size: 0.85rem; font-weight: 400; color: rgba(255,255,255,0.3); }

/* PLANOS */
.planos-section { background: var(--light); }
.planos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.plano-card {
  background: var(--white); padding: 40px 32px; position: relative;
  border-top: 3px solid transparent; transition: var(--transition);
}
.plano-card.featured { background: var(--dark); border-top-color: var(--gold); }
.plano-card:not(.featured):hover { border-top-color: var(--blue); }
.plano-icon { font-size: 2rem; margin-bottom: 20px; }
.plano-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 900; margin-bottom: 4px; color: var(--dark); }
.plano-card.featured .plano-name { color: var(--white); }
.plano-desc { font-size: 0.85rem; color: var(--gray); margin-bottom: 20px; }
.plano-card.featured .plano-desc { color: rgba(255,255,255,0.4); }
.plano-price { font-family: var(--font-display); font-size: 2.4rem; font-weight: 900; color: var(--dark); line-height: 1; }
.plano-card.featured .plano-price { color: var(--gold); }
.plano-period { font-size: 0.8rem; color: var(--gray); }
.plano-best { display: inline-block; background: var(--gold); color: var(--black); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; margin-bottom: 16px; }

/* ===== CONTATO ===== */
.contact-section { background: var(--dark); padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.contact-info-title { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--white); margin-bottom: 16px; }
.contact-info-sub { color: rgba(255,255,255,0.4); font-size: 0.95rem; margin-bottom: 40px; }
.c-info-block { display: flex; gap: 16px; margin-bottom: 32px; }
.c-info-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(200,168,75,0.1);
  border: 1px solid rgba(200,168,75,0.3);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.c-info-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.c-info-val   { font-size: 0.95rem; color: rgba(255,255,255,0.65); }
.c-info-val a:hover { color: var(--gold); }

.horario-table { margin-top: 12px; }
.h-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.h-row:last-child { border-bottom: none; }
.h-day  { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.h-time { font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 600; }

.docs-list { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.doc-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.doc-item::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* FORM DARK */
.form-dark { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.07); padding: 44px; }
.form-dark h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; color: var(--white); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.form-control {
  width: 100%; height: 48px; padding: 0 16px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); font-size: 0.9rem; font-family: var(--font);
  transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.06); }
.form-control::placeholder { color: rgba(255,255,255,0.2); }
textarea.form-control { height: 120px; padding: 14px 16px; resize: vertical; }
select.form-control { cursor: pointer; }
select.form-control option { background: var(--dark-3); color: var(--white); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.form-check input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--gold); cursor: pointer; flex-shrink: 0; }
.form-check label { font-size: 0.82rem; color: rgba(255,255,255,0.4); cursor: pointer; }
.form-check a { color: var(--gold); }

.alert-success-dark { background: rgba(37,211,102,0.08); border: 1px solid rgba(37,211,102,0.25); color: #34d399; padding: 16px 20px; margin-bottom: 24px; font-size: 0.88rem; }

/* ===== MAP ===== */
.map-section { background: var(--dark); }
.map-header {
  padding: 36px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: var(--dark-2);
}
.map-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.map-embed { position: relative; }
.map-embed iframe { filter: grayscale(20%) contrast(1.05); }

/* ===== AUTH ===== */
.auth-page {
  min-height: 100vh; background: var(--black);
  display: grid; grid-template-columns: 1fr 1fr;
}
.auth-left {
  background: linear-gradient(160deg, var(--dark) 0%, var(--black) 100%);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px; position: relative; overflow: hidden;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.auth-left::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(rgba(0,87,184,0.15), transparent);
}
.auth-left-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 32px; display: flex; align-items: center; gap: 12px; }
.auth-left-tag::before { content: ''; width: 24px; height: 1.5px; background: var(--gold); }
.auth-left h2 { font-family: var(--font-display); font-size: 2.4rem; font-weight: 900; color: var(--white); margin-bottom: 16px; line-height: 1.1; }
.auth-left p  { color: rgba(255,255,255,0.4); font-size: 0.95rem; margin-bottom: 48px; }
.auth-feature { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.auth-feature-icon { width: 36px; height: 36px; background: rgba(200,168,75,0.1); border: 1px solid rgba(200,168,75,0.3); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.auth-feature-title { font-size: 0.88rem; font-weight: 700; color: var(--white); }
.auth-feature-desc  { font-size: 0.8rem;  color: rgba(255,255,255,0.3); margin-top: 2px; }

.auth-right {
  display: flex; align-items: center; justify-content: center;
  padding: 80px 60px;
}
.auth-box { width: 100%; max-width: 420px; }
.auth-box-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--white); margin-bottom: 6px; }
.auth-box-sub { font-size: 0.88rem; color: rgba(255,255,255,0.35); margin-bottom: 36px; }
.auth-tabs { display: flex; gap: 2px; margin-bottom: 32px; }
.auth-tab {
  flex: 1; padding: 12px; text-align: center;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); cursor: pointer; transition: var(--transition); font-family: var(--font);
}
.auth-tab.active { background: var(--gold); border-color: var(--gold); color: var(--black); }
.auth-footer-text { text-align: center; margin-top: 20px; font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.auth-footer-text a { color: var(--gold); font-weight: 600; }
.auth-forgot { text-align: right; margin-top: -12px; margin-bottom: 20px; }
.auth-forgot a { font-size: 0.78rem; color: var(--gold); }
.auth-info-box { background: rgba(200,168,75,0.06); border: 1px solid rgba(200,168,75,0.2); padding: 20px; margin-bottom: 24px; }
.auth-info-box p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.auth-info-box strong { color: var(--gold); }

/* ===== DASHBOARD ===== */
.dash-wrap { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; background: var(--light); }

.sidebar {
  background: var(--black);
  border-right: 1px solid rgba(255,255,255,0.05);
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
  display: flex; flex-direction: column;
}
.sidebar-head { padding: 28px 24px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sidebar-nav { padding: 20px 0; flex: 1; }
.sidebar-group-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.2); padding: 16px 24px 6px; }
.sidebar-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 24px; color: rgba(255,255,255,0.45);
  font-size: 0.85rem; font-weight: 500; transition: var(--transition); cursor: pointer;
  border-left: 2px solid transparent; text-decoration: none;
}
.sidebar-item:hover { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.8); }
.sidebar-item.active { background: rgba(200,168,75,0.06); color: var(--gold); border-left-color: var(--gold); }
.sidebar-icon { font-size: 1.1rem; width: 20px; text-align: center; }
.sidebar-foot { padding: 20px 24px; border-top: 1px solid rgba(255,255,255,0.06); }

.dash-main { display: flex; flex-direction: column; }
.dash-topbar {
  background: var(--white); border-bottom: 1px solid var(--light);
  padding: 0 40px; height: 64px; display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 10; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.dash-topbar-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 900; color: var(--dark); }
.dash-user { display: flex; align-items: center; gap: 12px; }
.dash-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; color: var(--white); font-size: 1rem;
}
.dash-user-name { font-size: 0.85rem; font-weight: 700; color: var(--dark); }
.dash-user-sub  { font-size: 0.72rem; color: var(--gray); }

.dash-content { padding: 40px; flex: 1; }
.dash-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.d-card {
  background: var(--white); padding: 28px 24px;
  border: 1px solid #ebebeb; position: relative; overflow: hidden;
  transition: var(--transition);
}
.d-card:hover { box-shadow: var(--shadow-sm); }
.d-card-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.d-card-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 12px; }
.d-card-val { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--dark); line-height: 1; margin-bottom: 6px; }
.d-card-sub { font-size: 0.78rem; color: var(--gray); }

.data-card { background: var(--white); border: 1px solid #ebebeb; overflow: hidden; margin-bottom: 24px; }
.data-card-head {
  padding: 20px 28px; border-bottom: 1px solid #ebebeb;
  display: flex; align-items: center; justify-content: space-between;
}
.data-card-head h3 { font-size: 0.9rem; font-weight: 700; color: var(--dark); }
.data-card-body { padding: 28px; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { padding: 10px 16px; text-align: left; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); background: var(--light); }
.data-table td { padding: 14px 16px; font-size: 0.88rem; color: var(--dark); border-bottom: 1px solid #f0f0f0; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: #fafafa; }

.badge-status { display: inline-flex; align-items: center; gap: 5px; padding: 4px 12px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.badge-ativo   { background: rgba(16,185,129,0.1); color: #059669; }
.badge-pendente{ background: rgba(245,158,11,0.1); color: #d97706; }
.badge-vencido { background: rgba(239,68,68,0.1);  color: #dc2626; }
.badge-status::before { content: '●'; font-size: 0.5rem; }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-item-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.info-item-val   { font-size: 0.95rem; font-weight: 600; color: var(--dark); }

/* ===== CAROUSEL GRADIENT (slides sem foto) ===== */
.carousel-img-grad {
  background: linear-gradient(135deg, #0e1220 0%, #1a2440 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; min-height: 560px; overflow: hidden;
}
.carousel-img-grad .grad-icon {
  font-size: 5.5rem; position: relative; z-index: 2;
  animation: moto-float 3.5s ease-in-out infinite;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.7));
}
.carousel-img-grad .grad-watermark {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  pointer-events: none;
}
.carousel-img-grad .grad-watermark span {
  font-family: var(--font-display); font-size: clamp(5rem, 13vw, 14rem);
  font-weight: 900; color: rgba(255,255,255,0.04);
  letter-spacing: -0.05em; text-transform: uppercase;
  white-space: nowrap; user-select: none; line-height: 1;
}
@keyframes moto-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

/* ===== MELHORIAS VISUAIS ===== */

/* Hero - fundo mais dramático */
.hero-bg {
  background:
    radial-gradient(ellipse 70% 55% at 75% 40%, rgba(26,45,181,0.45) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 15% 75%, rgba(248,183,0,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 90% 40% at 50% 100%, rgba(14,29,140,0.35) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 10%, rgba(46,68,212,0.15) 0%, transparent 50%),
    linear-gradient(160deg, #040610 0%, #080d1c 55%, #040610 100%);
}

/* Orb animado no hero */
.hero-bg::after {
  content: '';
  position: absolute; top: 20%; left: 60%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,45,181,0.15) 0%, transparent 70%);
  animation: hero-orb 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes hero-orb {
  0%,100% { transform: translate(0,0) scale(1); opacity: 0.6; }
  33%      { transform: translate(-40px,30px) scale(1.1); opacity: 1; }
  66%      { transform: translate(30px,-20px) scale(0.9); opacity: 0.7; }
}

/* Hero título maior e mais impactante */
.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.hero-title em {
  background: linear-gradient(135deg, var(--gold) 0%, #ffe066 50%, #ff9500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 20px rgba(248,183,0,0.4));
}

/* Hero descrição mais legível */
.hero-desc { color: rgba(255,255,255,0.72); font-size: 1.08rem; }

/* Hero stats com glow */
.hero-stat-num {
  font-size: 2.6rem;
  color: var(--white);
  text-shadow: 0 0 30px rgba(248,183,0,0.3);
}
.hero-stats { border-top: 1px solid rgba(255,255,255,0.12); }

/* Botão gold com pulso */
.btn-gold {
  animation: btn-gold-glow 3s ease-in-out infinite;
}
@keyframes btn-gold-glow {
  0%,100% { box-shadow: 0 4px 20px rgba(248,183,0,0.25); }
  50%      { box-shadow: 0 4px 40px rgba(248,183,0,0.65), 0 0 0 6px rgba(248,183,0,0.08); }
}
.btn-gold:hover { animation: none; }

/* WhatsApp float com pulso */
.wpp-float a {
  animation: wpp-pulse 2.5s ease-in-out infinite;
}
@keyframes wpp-pulse {
  0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.35); }
  60%      { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
}
.wpp-float a:hover { animation: none; }

/* Marquee mais visível */
.brand-bar {
  background: linear-gradient(90deg, var(--dark) 0%, #0e1530 50%, var(--dark) 100%);
  border-top: 1px solid rgba(248,183,0,0.25);
  border-bottom: 1px solid rgba(248,183,0,0.10);
}
.marquee-item { color: rgba(255,255,255,0.55); font-size: 0.8rem; }
.marquee-dot  { background: var(--gold); width: 5px; height: 5px; box-shadow: 0 0 6px rgba(248,183,0,0.8); }

/* Diferenciais - números mais vibrantes */
.diff-num {
  font-size: 5rem;
  background: linear-gradient(135deg, var(--blue-light), rgba(46,68,212,0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.diff-card:hover .diff-num {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
}
.diff-card h3 { font-size: 1.1rem; }

/* Carrossel badge com brilho */
.carousel-badge {
  animation: badge-shine 3s ease-in-out infinite;
}
@keyframes badge-shine {
  0%,100% { box-shadow: 0 4px 16px rgba(248,183,0,0.4); }
  50%      { box-shadow: 0 4px 28px rgba(248,183,0,0.9), 0 0 0 4px rgba(248,183,0,0.15); }
}

/* Carrossel info fundo com gradiente */
.carousel-info {
  background: linear-gradient(160deg, #06080f 0%, #0c1022 100%);
}
.carousel-model { text-shadow: 0 2px 20px rgba(248,183,0,0.15); }

/* Catalog card badge com shine */
.catalog-card-badge { animation: badge-shine 3s ease-in-out infinite; animation-delay: 1s; }

/* Steps círculos com glow */
.step-circle {
  box-shadow: 0 0 0 4px rgba(248,183,0,0.08), 0 8px 24px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.step:hover .step-circle {
  box-shadow: 0 0 0 8px rgba(248,183,0,0.15), 0 12px 32px rgba(0,0,0,0.2);
  background: var(--gold);
  border-color: var(--gold);
}
.step:hover .step-circle-num { color: var(--black); }
.step:hover h3 { color: var(--blue); }

/* CTA Banner mais impactante */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #ffca2c 50%, var(--gold) 100%);
  background-size: 200% auto;
  animation: cta-shimmer 4s linear infinite;
}
@keyframes cta-shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Depoimentos avatar com gradiente mais rico */
.dep-avatar {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 50%, rgba(248,183,0,0.6) 100%);
  box-shadow: 0 4px 16px rgba(26,45,181,0.4);
}

/* Hero moto glow mais forte */
.hero-moto img {
  filter: drop-shadow(0 40px 80px rgba(26,45,181,0.6))
          drop-shadow(0 8px 24px rgba(0,0,0,0.7))
          drop-shadow(0 0 120px rgba(248,183,0,0.18))
          drop-shadow(0 0 50px rgba(255,255,255,0.55))
          drop-shadow(0 0 20px rgba(255,255,255,0.85));
}

/* Navbar com linha dourada no topo no scroll */
.navbar.scrolled .navbar-inner {
  border-top: 2px solid rgba(248,183,0,0.35);
}

/* Botão outline com glow ao hover */
.btn-outline:hover {
  box-shadow: 0 0 30px rgba(248,183,0,0.2), 0 8px 24px rgba(0,0,0,0.2);
}

/* Footer com gradiente sutil */
.footer {
  background: linear-gradient(180deg, #040610 0%, #07080f 100%);
}

/* Catalog section fundo mais rico */
.catalog-section {
  background: linear-gradient(180deg, var(--dark) 0%, #090c18 100%);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1200px) {
  .diff-grid  { grid-template-columns: repeat(2, 1fr); }
  .frota-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .planos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .dep-grid   { grid-template-columns: 1fr 1fr; }
  .steps-wrap { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps-wrap::before { display: none; }
  .dash-cards { grid-template-columns: repeat(2, 1fr); }
  .info-grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-content-wrap { grid-template-columns: 1fr; }
  .hero-aside { display: none; }
  .cta-banner .container { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .auth-page    { grid-template-columns: 1fr; }
  .auth-left    { display: none; }
  .dash-wrap    { grid-template-columns: 1fr; }
  .sidebar      { display: none; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .navbar-inner { padding: 0 20px; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 76px; left: 0; right: 0;
    background: var(--black); flex-direction: column; align-items: center;
    padding: 28px; gap: 24px; display: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links.open { display: flex; }
  .nav-actions .btn { display: none; }
  .frota-grid, .catalog-grid, .dep-grid, .planos-grid, .diff-grid { grid-template-columns: 1fr; }
  .steps-wrap { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .auth-right { padding: 60px 24px; }
  .dash-content { padding: 24px 16px; }
  .dash-topbar  { padding: 0 20px; }
  .filter-bar .container { padding: 14px 20px; }
}
@media (max-width: 480px) {
  .section { padding: 70px 0; }
  .hero-title { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-ctas  { flex-direction: column; }
  .dash-cards { grid-template-columns: 1fr; }
  .info-grid  { grid-template-columns: 1fr; }
}
