/* ============================================================
   VECTUS — Dr. Victor Hauly · Redesign Cinematográfico
   ============================================================ */

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

:root {
  /* Cinematic dark palette */
  --bg: #080B14;
  --bg-2: #0C1322;
  --surface: #121A2E;
  --surface-2: #18223A;
  --navy: #1A2744;

  --orange: #FF6A1A;
  --orange-soft: #FF8845;
  --gold: #E8B23A;
  --red: #C0392B;

  --text: #ECEFF6;
  --text-dim: rgba(236,239,246,0.62);
  --text-faint: rgba(236,239,246,0.4);
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --section-pad: clamp(90px, 12vw, 180px);
  --container: 1240px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.4s var(--ease);
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

::selection {
  background: var(--orange);
  color: #fff;
}

/* ===== FILM GRAIN + VIGNETTE OVERLAY ===== */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.cursor-ring.is-hover {
  width: 62px;
  height: 62px;
  border-color: var(--orange);
  background: rgba(255,106,26,0.08);
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ===== TYPOGRAPHY HELPERS ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--orange);
  margin-bottom: 22px;
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--orange);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section-title em {
  font-style: italic;
  color: var(--orange);
}

.section-desc {
  font-size: 1.08rem;
  color: var(--text-dim);
  max-width: 560px;
  margin-top: 22px;
}

.section-header {
  margin-bottom: 70px;
  max-width: 820px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header.center .section-tag { justify-content: center; }
.section-header.center .section-desc { margin-left: auto; margin-right: auto; }

/* light helpers retained for compatibility */
.section-tag-light { color: var(--gold); }
.section-tag-light::before { background: var(--gold); }
.section-title-light { color: var(--text); }
.section-title-light em { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 30px rgba(255,106,26,0.3);
}

.btn-primary:hover {
  background: var(--orange-soft);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255,106,26,0.4);
}

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

.btn-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--text);
  transform: translateY(-3px);
}

.btn-sm { padding: 12px 22px; font-size: 0.84rem; }

.btn-cta {
  background: var(--orange);
  color: #fff;
  font-size: 1.05rem;
  padding: 20px 42px;
  box-shadow: 0 10px 40px rgba(255,106,26,0.35);
}

.btn-cta:hover {
  background: var(--orange-soft);
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(255,106,26,0.45);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.navbar.hidden { transform: translateY(-100%); }

.navbar.scrolled {
  background: rgba(8,11,20,0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo { display: flex; align-items: center; }

.nav-logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 1px rgba(255,255,255,0.7)) drop-shadow(0 2px 12px rgba(0,0,0,0.5));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 6px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-links a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-dim);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  font-size: 0.84rem;
  font-weight: 600;
  padding: 12px 24px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  box-shadow: 0 6px 22px rgba(255,106,26,0.3);
}

.nav-cta:hover {
  background: var(--orange-soft);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  background:
    radial-gradient(75% 80% at 78% 32%, rgba(26,39,68,0.55) 0%, transparent 60%),
    radial-gradient(55% 65% at 18% 78%, rgba(255,106,26,0.05) 0%, transparent 55%),
    linear-gradient(160deg, #0C1322 0%, #080B14 55%, #05080F 100%);
}

/* photo background hidden — clean cinematic gradient instead */
.hero-bg { display: none; }

/* cinematic overlay: glow behind subject + vignette */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(60% 85% at 80% 55%, rgba(255,106,26,0.08) 0%, transparent 45%),
    radial-gradient(130% 100% at 50% 0%, transparent 55%, rgba(5,8,15,0.55) 100%),
    radial-gradient(130% 100% at 50% 100%, transparent 60%, rgba(5,8,15,0.7) 100%);
}

.hero-aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
}

.hero-aurora span {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  will-change: transform;
}

.hero-aurora .blob-1 {
  width: 480px; height: 480px; top: -120px; left: -60px;
  background: radial-gradient(circle, rgba(255,106,26,0.5), transparent 70%);
  animation: aurora-1 18s ease-in-out infinite;
}
.hero-aurora .blob-2 {
  width: 540px; height: 540px; bottom: -160px; right: -120px;
  background: radial-gradient(circle, rgba(26,39,68,0.7), transparent 70%);
  animation: aurora-2 22s ease-in-out infinite;
}
.hero-aurora .blob-3 {
  width: 380px; height: 380px; top: 40%; left: 50%;
  background: radial-gradient(circle, rgba(232,178,58,0.28), transparent 70%);
  animation: aurora-3 20s ease-in-out infinite;
}

@keyframes aurora-1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(120px,80px) scale(1.15)} }
@keyframes aurora-2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-100px,-60px) scale(1.1)} }
@keyframes aurora-3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-80px,60px) scale(0.9)} }

.hero-figure {
  position: absolute;
  right: clamp(0px, 3vw, 80px);
  bottom: 0;
  height: 94%;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  transition: transform 0.25s ease-out;
  will-change: transform;
}

.hero-figure img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.6));
  -webkit-mask-image: linear-gradient(to bottom, #000 84%, transparent 99%);
  mask-image: linear-gradient(to bottom, #000 84%, transparent 99%);
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 28px;
}

.hero-content { max-width: 640px; }

/* Cinematic intro — staggered entrance on load */
.hero-content > * { animation: hero-in 1s var(--ease) both; }
.hero-badge { animation-delay: 0.15s; }
.hero-title { animation-delay: 0.3s; }
.hero-text { animation-delay: 0.45s; }
.hero-actions { animation-delay: 0.6s; }
.hero-stats { animation-delay: 0.75s; }

.hero-figure { animation: figure-in 1.4s var(--ease) 0.2s both; }
.hero-scroll { animation: hero-in 1s var(--ease) 1s both; }

@keyframes hero-in {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes figure-in {
  from { opacity: 0; transform: translateY(40px) scale(1.04); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-strong);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 30px;
  backdrop-filter: blur(8px);
}

.hero-title { margin-bottom: 26px; }

.hero-name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: #fff;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-dim);
  margin-top: 14px;
}

.hero-subtitle em { font-style: italic; color: var(--orange); }

.hero-text {
  font-size: 1.12rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-text strong { color: var(--text); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-stats { display: flex; gap: 48px; }

.stat { text-align: left; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.66rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.hero-scroll .line {
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scroll-line 2.2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); opacity: 0; }
  40% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); opacity: 0; transform-origin: bottom; }
}

/* ===== MARQUEE ===== */
.marquee {
  background: var(--bg-2);
  padding: 26px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  animation: marquee-scroll 34s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee span {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 600;
  font-style: italic;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.marquee .dot { color: var(--orange); font-size: 0.5rem; font-style: normal; }

@keyframes marquee-scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== SOBRE ===== */
.sobre {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 60px;
}

.sobre-text .section-title { margin-bottom: 32px; }

.sobre-text p {
  font-size: 1.08rem;
  color: var(--text-dim);
  line-height: 1.85;
  margin-bottom: 20px;
}

.sobre-text p strong { color: var(--text); font-weight: 600; }

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

.credential-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}

.credential-card:hover {
  border-color: rgba(255,106,26,0.4);
  transform: translateY(-4px);
  background: var(--surface-2);
}

.credential-icon {
  width: 46px;
  height: 46px;
  background: rgba(255,106,26,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--orange);
}

.credential-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.credential-card p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.5; }

.sobre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 9px 20px;
  background: rgba(255,255,255,0.04);
  color: var(--text-dim);
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  transition: all var(--transition);
}

.tag:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ===== STATS BAND ===== */
.stats-band {
  background: var(--bg-2);
  padding: clamp(70px, 9vw, 120px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item { text-align: left; }

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.6rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-text {
  display: block;
  margin-top: 14px;
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.5;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* ===== SERVIÇOS ===== */
.servicos {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  perspective: 1200px;
}

.servico-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition), transform 0.5s var(--ease);
  transform-style: preserve-3d;
  overflow: hidden;
}

.servico-card > * { position: relative; z-index: 2; }

.servico-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle 240px at var(--mx, 50%) var(--my, 50%), rgba(255,106,26,0.16), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
  z-index: 1;
}

.servico-card:hover {
  border-color: rgba(255,106,26,0.4);
  background: var(--surface-2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.servico-card:hover::before { opacity: 1; }
.servico-card.tilting { transition: box-shadow var(--transition), border-color var(--transition), background var(--transition); }

.servico-featured {
  border-color: rgba(255,106,26,0.35);
  background: linear-gradient(160deg, var(--surface-2) 0%, rgba(255,106,26,0.06) 100%);
}

.servico-badge {
  position: absolute;
  top: 26px;
  right: 26px;
  background: var(--orange);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 13px;
  border-radius: var(--radius-pill);
}

.servico-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  color: var(--orange);
  transition: all var(--transition);
}

.servico-card:hover .servico-icon {
  background: var(--orange);
  color: #fff;
  transform: scale(1.05);
}

.servico-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.servico-card p { font-size: 0.94rem; color: var(--text-dim); line-height: 1.65; }

/* ===== DIFERENCIAIS ===== */
.diferenciais {
  padding: var(--section-pad) 0;
  background: var(--bg-2);
}

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

.diferencial-card {
  padding: 44px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: all var(--transition);
}

.diferencial-card:hover {
  background: var(--surface-2);
  border-color: rgba(255,106,26,0.4);
  transform: translateY(-6px);
}

.diferencial-icon {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  color: var(--orange);
}

.diferencial-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}

.diferencial-card p { font-size: 0.94rem; color: var(--text-dim); line-height: 1.7; }

/* ===== COMO FUNCIONA ===== */
.como-funciona {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.step { flex: 1; max-width: 320px; padding: 20px; }

.step-number {
  width: 70px;
  height: 70px;
  margin-bottom: 26px;
  background: linear-gradient(135deg, var(--orange), #d4530f);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 30px rgba(255,106,26,0.3);
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.step-content p { font-size: 0.94rem; color: var(--text-dim); line-height: 1.65; }

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 58px;
  color: var(--line-strong);
}

/* ===== ATENDIMENTO ===== */
.atendimento {
  padding: var(--section-pad) 0;
  background: var(--bg-2);
}

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

.atendimento-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  transition: all var(--transition);
}

.atendimento-card:hover {
  border-color: rgba(255,106,26,0.4);
  background: var(--surface-2);
  transform: translateY(-5px);
}

.atendimento-icon { color: var(--orange); margin-bottom: 24px; }

.atendimento-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.atendimento-endereco {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

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

.depoimento-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  transition: all var(--transition);
}

.depoimento-card:hover {
  background: var(--surface-2);
  border-color: rgba(255,106,26,0.3);
  transform: translateY(-5px);
}

.depoimento-stars { color: var(--gold); font-size: 1rem; margin-bottom: 18px; letter-spacing: 3px; }

.depoimento-card > p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  font-family: var(--font-display);
  margin-bottom: 28px;
}

.depoimento-author { display: flex; align-items: center; gap: 14px; }

.depoimento-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.depoimento-author strong { display: block; color: #fff; font-size: 0.95rem; }
.depoimento-author span { font-size: 0.8rem; color: var(--text-faint); }

/* ===== FAQ ===== */
.faq {
  padding: var(--section-pad) 0;
  background: var(--bg-2);
}

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--line); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}

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

.faq-chevron { flex-shrink: 0; transition: transform var(--transition); color: var(--text-faint); }
.faq-item.active .faq-chevron { transform: rotate(180deg); color: var(--orange); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-answer p { padding-bottom: 28px; font-size: 0.98rem; color: var(--text-dim); line-height: 1.75; }

/* ===== CTA FINAL ===== */
.cta-final {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--bg);
  text-align: center;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,106,26,0.14), transparent 65%);
  pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.cta-content h2 em { font-style: italic; color: var(--orange); }

.cta-content > p {
  font-size: 1.12rem;
  color: var(--text-dim);
  margin-bottom: 44px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
  background: #05080F;
  color: var(--text-dim);
  padding: 80px 0 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.footer-logo-img { height: 100px; width: auto; margin-bottom: 16px; }

.footer-info p { font-size: 0.92rem; line-height: 1.6; }
.footer-crefito { font-size: 0.8rem; color: var(--text-faint); margin-top: 10px; }

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }

.footer-contact ul { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; }
.footer-contact li svg { flex-shrink: 0; color: var(--orange); }
.footer-contact a { transition: color var(--transition); }
.footer-contact a:hover { color: var(--orange); }

.footer-bottom { padding: 28px 0; text-align: center; font-size: 0.82rem; color: var(--text-faint); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: all var(--transition);
}

.whatsapp-float:hover { transform: scale(1.1) translateY(-2px); }

/* ===== REVEAL ANIMATIONS ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

[data-reveal].revealed { opacity: 1; transform: translateY(0); }

[data-reveal-clip] {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transform: translateY(30px);
  transition: opacity 1s var(--ease), clip-path 1s var(--ease), transform 1s var(--ease);
}

[data-reveal-clip].revealed { opacity: 1; clip-path: inset(0 0 0 0); transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .depoimentos-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    height: calc(100vh - 80px);
    background: var(--bg);
    border: none;
    border-radius: 0;
    padding: 44px 32px;
    gap: 8px;
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.mobile-open a { font-size: 1.5rem; font-weight: 600; color: var(--text); padding: 14px 0; }

  .hero { flex-direction: column; justify-content: flex-start; }

  .hero-figure {
    position: relative;
    right: auto; bottom: auto;
    height: auto; width: auto;
    max-width: 86%;
    margin: 0 auto -56px;
    order: 1;
  }

  .hero-figure img { height: 46vh; max-height: 420px; width: auto; object-position: top center; }

  .hero-container { order: 2; padding: 0 20px 60px; text-align: center; }

  .hero-content {
    max-width: 100%;
    padding: 60px 26px 36px;
    text-align: center;
    background: rgba(12,19,34,0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
  }

  .hero-text { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; gap: 32px; }
  .hero-badge { margin: 0 auto 24px; }
  .hero-scroll { display: none; }

  .servicos-grid { grid-template-columns: 1fr; }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); gap: 44px 20px; }

  .steps-grid { flex-direction: column; align-items: center; }
  .step { max-width: 100%; text-align: center; }
  .step-number { margin-left: auto; margin-right: auto; }
  .step-connector { transform: rotate(90deg); padding-top: 0; }

  .atendimento-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .footer-logo-img { margin-left: auto; margin-right: auto; }
  .footer-contact li { justify-content: center; }
  .section-header { text-align: center; margin-left: auto; margin-right: auto; }
  .section-header .section-tag { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; }
  .sobre-cards { grid-template-columns: 1fr; }
  .stats-band-grid { grid-template-columns: 1fr; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal], [data-reveal-clip] { opacity: 1; transform: none; clip-path: none; }
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============================================================
   ADIÇÕES — GALERIA, HERO BRAND, TÉCNICAS RECOVERY
   ============================================================ */

/* Logo texto — Navbar */
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text) !important;
  text-decoration: none;
  line-height: 1;
}
.nav-logo-text:hover { color: var(--orange) !important; }

/* Logo texto — Footer */
.footer-logo-text {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

/* Hero avatar (foto circular antes do título) */
.hero-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--orange);
  box-shadow: 0 0 0 4px rgba(255,106,26,0.15), 0 8px 24px rgba(0,0,0,0.4);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
}
/* No desktop, esconde o avatar (já tem o fundo) */
@media (min-width: 769px) {
  .hero-avatar { display: none; }
}

/* Hero portrait background */
.hero-bg-portrait { position: absolute; inset: 0; z-index: 0; }
.hero-bg-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top; /* mobile default */
}
@media (min-width: 769px) {
  .hero-bg-portrait img {
    object-position: 72% 22%;
    transform: scale(0.82);
    transform-origin: center top;
  }
  /* Gradiente à direita (texto) + gradiente em baixo (fade chin) */
  .hero-overlay-portrait {
    background:
      linear-gradient(to top,  rgba(8,11,20,1) 0%, rgba(8,11,20,0.6) 22%, transparent 45%),
      linear-gradient(to right, rgba(8,11,20,0.97) 0%, rgba(8,11,20,0.88) 36%, rgba(8,11,20,0.4) 62%, rgba(8,11,20,0) 100%);
  }
}
.hero-overlay-portrait {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    rgba(8,11,20,0.97) 0%,
    rgba(8,11,20,0.90) 38%,
    rgba(8,11,20,0.45) 65%,
    rgba(8,11,20,0.05) 100%
  );
}
@media (max-width: 768px) {
  .hero-overlay-portrait {
    background: linear-gradient(
      to bottom,
      rgba(8,11,20,0.35) 0%,
      rgba(8,11,20,0.82) 52%,
      rgba(8,11,20,0.98) 100%
    );
  }
  .hero-bg-portrait img { object-position: center top; }
}

.hero-brand-display {
  position: absolute;
  right: clamp(40px, 8vw, 140px);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.025);
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  text-align: right;
  z-index: 0;
}
.hero-brand-display span {
  display: block;
  font-size: 0.38em;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.04);
  text-transform: uppercase;
  margin-top: 0.3em;
}


.servico-tecnicas {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--text-faint);
  line-height: 1.6;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.servico-tecnicas strong { color: var(--orange); font-weight: 600; }

/* ── BENTO GALLERY (desktop) / CAROUSEL (mobile) ────── */
.gallery-section-wrap { overflow: hidden; }

/* Desktop bento — visível só em ≥769px */
.bento-gallery {
  display: none;
}
@media (min-width: 769px) {
  .bento-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 88px;
    gap: 6px;
    padding: 0;
  }
  /* Mobile carousel — escondido no desktop */
  #mobileCarousel { display: none !important; }
}

.bg-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
}
.bg-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
  display: block;
}
.bg-item:hover img { transform: scale(1.06); }

/* Grid positions */
.bg-item-1 { grid-column: span 2; grid-row: span 4; }
.bg-item-2 { grid-column: span 1; grid-row: span 2; }
.bg-item-3 { grid-column: span 1; grid-row: span 2; }
.bg-item-4 { grid-column: span 1; grid-row: span 2; }
.bg-item-5 { grid-column: span 1; grid-row: span 2; }

/* Hover overlay */
.bg-hover {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.35s;
}
.bg-item:hover .bg-hover { opacity: 1; }
.bg-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,11,20,0.82) 0%, rgba(8,11,20,0.2) 55%, transparent 100%);
}
.bg-info {
  position: absolute; bottom: 14px; left: 16px;
  display: flex; flex-direction: column; gap: 3px;
}
.bg-title {
  font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--orange);
}
.bg-desc {
  font-size: 0.72rem; color: rgba(236,239,246,0.7);
}

/* ── TESTIMONIALS COLUMNS (scroll infinito) ──────────── */
.tcols-wrap {
  display: flex;
  gap: 20px;
  height: 560px;
  overflow: hidden;
  margin-top: 56px;
  /* fade topo e baixo */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}

.tcol { flex: 1; overflow: hidden; min-width: 0; }

.tcol-track {
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: tcScroll var(--dur, 22s) linear infinite;
}
.tcol-speed-1 { --dur: 20s; }
.tcol-speed-2 { --dur: 26s; animation-delay: -10s; }
.tcol-speed-3 { --dur: 23s; animation-delay: -5s; }

@keyframes tcScroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
.tcols-wrap:hover .tcol-track { animation-play-state: paused; }

.tc-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22), 0 0 0 0 transparent;
  transition: border-color .3s, box-shadow .3s;
}
.tc-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 8px 32px rgba(0,0,0,.35), 0 0 0 1px rgba(255,106,26,.15);
}
.tc-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.68;
  margin-bottom: 20px;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tc-av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tc-author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.tc-author span {
  font-size: 0.75rem;
  color: var(--text-faint);
}

/* Mobile: 1 coluna visível */
@media (max-width: 768px) {
  .tcols-wrap { gap: 0; height: 480px; }
  .tcol:nth-child(2),
  .tcol:nth-child(3) { display: none; }
  .tcol { flex: none; width: 100%; }
}

/* ── STACKED TESTIMONIALS ─────────────────────────────── */
.tstack-outer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0 120px;
}
.tstack {
  display: grid;
  grid-template-areas: 'stack';
  place-items: center;
  position: relative;
}
.tcard {
  grid-area: stack;
  width: 380px;
  min-height: 180px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  transform: skewY(-8deg);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1),
              filter 0.5s ease,
              border-color 0.3s;
  position: relative;
  cursor: default;
  will-change: transform;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* Overlay escuro nos cards não-ativos */
.tcard-overlay {
  position: absolute; inset: 0;
  background: rgba(8,11,20,0.62);
  border-radius: inherit;
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 1;
}
/* Base positions */
.tcard-0 { z-index: 1; filter: grayscale(1); }
.tcard-1 { z-index: 2; transform: skewY(-8deg) translateX(64px) translateY(40px); filter: grayscale(1); }
.tcard-2 { z-index: 3; transform: skewY(-8deg) translateX(128px) translateY(80px); filter: grayscale(0); }
/* Front card — overlay removido por padrão */
.tcard-2 .tcard-overlay { opacity: 0; }

/* Hover: card 0 (back) */
.tstack.hover-0 .tcard-0 { transform: skewY(-8deg) translateY(-40px); filter: grayscale(0); }
.tstack.hover-0 .tcard-0 .tcard-overlay { opacity: 0; }
.tstack.hover-0 .tcard-1 { transform: skewY(-8deg) translateX(96px) translateY(130px); }
.tstack.hover-0 .tcard-2 { transform: skewY(-8deg) translateX(160px) translateY(176px); }

/* Hover: card 1 (middle) */
.tstack.hover-1 .tcard-1 { transform: skewY(-8deg) translateX(64px) translateY(0px); filter: grayscale(0); }
.tstack.hover-1 .tcard-1 .tcard-overlay { opacity: 0; }
.tstack.hover-1 .tcard-2 { transform: skewY(-8deg) translateX(160px) translateY(160px); }

/* Hover: card 2 (front) */
.tstack.hover-2 .tcard-2 { transform: skewY(-8deg) translateX(128px) translateY(64px); }

/* Hover: qualquer card em foco fica colorido */
.tstack.hover-0 .tcard-1,
.tstack.hover-0 .tcard-2,
.tstack.hover-1 .tcard-0,
.tstack.hover-1 .tcard-2,
.tstack.hover-2 .tcard-0,
.tstack.hover-2 .tcard-1 { filter: grayscale(1); }

/* Card hover border */
.tcard:hover { border-color: var(--line-strong); }

/* Card internals */
.tcard-header {
  display: flex; align-items: center; gap: 12px;
  position: relative; z-index: 2;
}
.tcard-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange);
  color: #fff; font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tcard-meta { flex: 1; }
.tcard-meta strong { display: block; font-size: 0.9rem; color: var(--text); }
.tcard-meta span { font-size: 0.78rem; color: var(--text-faint); }
.tcard-x { color: var(--text-faint); flex-shrink: 0; }
.tcard-text {
  font-size: 0.88rem; color: var(--text-dim);
  line-height: 1.65; position: relative; z-index: 2;
}
.tcard-footer {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.75rem; color: var(--text-faint);
  position: relative; z-index: 2;
}
.tcard-actions { display: flex; gap: 16px; }

@media (max-width: 600px) {
  .tcard { width: 280px; min-height: 160px; padding: 16px 18px; }
  .tcard-1 { transform: skewY(-8deg) translateX(40px) translateY(28px); }
  .tcard-2 { transform: skewY(-8deg) translateX(80px) translateY(56px); }
}

/* CARROSSEL */
.carousel-section {
  padding: 0;
  overflow: hidden;
  position: relative;
}
.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: clamp(280px, 50vw, 560px);
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 6s ease;
}
.carousel-slide.active img {
  transform: scale(1.04);
}
.carousel-caption {
  position: absolute;
  bottom: 28px;
  left: 32px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s 0.2s, transform 0.4s 0.2s;
}
.carousel-slide.active .carousel-caption {
  opacity: 1;
  transform: translateY(0);
}
.carousel-caption span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  background: rgba(8,11,20,0.65);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,106,26,0.3);
}
/* Dark gradient at bottom */
.carousel-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,11,20,0.55) 0%, transparent 50%);
  pointer-events: none;
}
/* Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(8,11,20,0.6);
  backdrop-filter: blur(12px);
  color: var(--text);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.carousel-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}
.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }
/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.carousel-dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}
@media (max-width: 600px) {
  .carousel-wrapper { height: 280px; }
  .carousel-btn { width: 38px; height: 38px; }
  .hero-brand-display { display: none; }
}
