/* ═══════════════════════════════════════════
   Fernandez v2  Enhanced Styles
   Mobile-first · Industrial Dark · Micro-animations
   ═══════════════════════════════════════════ */

/* ── BRAND TOKENS ── */
:root {
  --black: #111315;
  --graphite: #1F2326;
  --graphite-light: #282D31;
  --yellow: #F2B705;
  --yellow-hover: #D9A204;
  --yellow-glow: rgba(242, 183, 5, 0.25);
  --yellow-glow-strong: rgba(242, 183, 5, 0.4);
  --offwhite: #F5F1E8;
  --steel: #5A6068;
  --steel-light: #8A9099;
  --border: rgba(255,255,255,0.07);
  --border-yellow: rgba(242, 183, 5, 0.18);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --nav-h: 68px;
  --page-px: 20px;
  --max-w: 1200px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--offwhite);
  overflow-x: hidden;
  line-height: 1.6;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ── HERO TITLE STYLING ── */

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 200;
  width: 0%; height: 3px;
  background: linear-gradient(90deg, var(--yellow), #FFD54F);
  transition: width 0.05s linear;
  box-shadow: 0 0 8px var(--yellow-glow);
}

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 3px; left: 0; right: 0; z-index: 100;
  padding: 0 var(--page-px); height: var(--nav-h);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.35s cubic-bezier(0.65,0,0.35,1), box-shadow 0.35s;
}
.nav > * { flex-shrink: 0; }
.nav-inner {
  width: 100%; max-width: var(--max-w);
  display: flex; align-items: center; justify-content: space-between;
}
.nav.scrolled {
  background: rgba(17,19,21,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border-yellow);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo svg { height: 32px; width: auto; }
.nav-brand {
  font-family: var(--font-display); font-weight: 800;
  font-size: 17px; letter-spacing: 2px; color: var(--offwhite);
}
.nav-brand small {
  display: block; font-weight: 500; font-size: 9px;
  letter-spacing: 3px; color: var(--yellow); text-transform: uppercase;
}
.nav-links {
  display: none; list-style: none; gap: 28px; align-items: center;
}
.nav-links a {
  font-family: var(--font-display); font-weight: 500; font-size: 13px;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--steel-light);
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--yellow);
  transition: width 0.3s cubic-bezier(0.16,1,0.3,1);
}
.nav-links a:hover { color: var(--yellow); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 1px; text-transform: uppercase;
  background: var(--yellow); color: var(--black); border: none;
  padding: 10px 22px; border-radius: 8px; cursor: pointer;
  transition: all 0.2s cubic-bezier(0.65,0,0.35,1);
}
.nav-cta:hover {
  background: var(--yellow-hover); transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--yellow-glow);
}
.menu-btn {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.menu-btn span {
  display: block; width: 22px; height: 2px; background: var(--offwhite);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1); border-radius: 1px;
}

/* Mobile overlay */
.mob-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(17,19,21,0.98); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mob-menu.open { opacity: 1; pointer-events: all; }
.mob-menu a {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--offwhite);
  transition: color 0.2s;
}
.mob-menu a:hover { color: var(--yellow); }
.mob-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; cursor: pointer;
  color: var(--offwhite); font-size: 28px; line-height: 1;
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 40px) var(--page-px) 60px; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}
.hero-inner {
  display: flex; flex-direction: column; gap: 40px;
  width: 100%; max-width: var(--max-w); margin: 0 auto;
  position: relative; z-index: 2;
}
.hero-z {
  position: absolute; right: -15%; bottom: -8%;
  width: 80vw; max-width: 550px; opacity: 0.05; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2; max-width: 680px; flex-shrink: 0;
  display: flex; flex-direction: column; gap: 24px;
}
.hero-label {
  font-family: var(--font-display); font-weight: 600; font-size: 12px;
  letter-spacing: 4px; text-transform: uppercase; color: var(--yellow);
  display: flex; align-items: center; gap: 12px;
}
.hero-label::before {
  content: ''; height: 2px; background: var(--yellow);
  width: 0; transition: width 0.8s cubic-bezier(0.16,1,0.3,1) 0.3s;
}
.hero-label.vis::before { width: 32px; }
.hero-h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(42px, 11vw, 84px); line-height: 0.93;
  letter-spacing: -0.5px; text-transform: uppercase;
  color: var(--offwhite); text-wrap: balance;
}
.hero-h1 em {
  font-style: normal; color: var(--yellow);
  text-shadow: 0 0 40px rgba(242,183,5,0.15);
}
.hero-p {
  font-size: 16px; line-height: 1.65; color: var(--steel-light);
  max-width: 440px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 767px) {
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { text-align: center; justify-content: center; width: 100%; }
}
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: none;
}
.scroll-hint span {
  font-family: var(--font-display); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--steel);
}
.scroll-hint i {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
}
@keyframes bob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(6px); }
}

/* ── BUTTONS ── */
.btn {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  letter-spacing: 1px; text-transform: uppercase; border: none;
  padding: 15px 32px; border-radius: 8px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s cubic-bezier(0.65,0,0.35,1); white-space: nowrap;
  position: relative; overflow: hidden;
}
/* Shimmer sweep on primary buttons */
.btn-primary { background: var(--yellow); color: var(--black); }
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s cubic-bezier(0.16,1,0.3,1);
}
.btn-primary:hover::after { left: 120%; }
.btn-primary:hover {
  background: var(--yellow-hover); transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--yellow-glow);
}
.btn-primary:active { transform: scale(0.98); }
.btn-ghost {
  background: transparent; color: var(--offwhite);
  border: 1.5px solid var(--steel); padding: 13px 28px;
}
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-dark { background: var(--black); color: var(--offwhite); }
.btn-dark::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  transition: left 0.5s cubic-bezier(0.16,1,0.3,1);
}
.btn-dark:hover::after { left: 120%; }
.btn-dark:hover {
  background: #000; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.btn-dark:active { transform: scale(0.98); }

/* Pulse glow on hero CTA */
.btn-pulse { animation: pulse-glow 2.5s ease-in-out infinite; }
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(242,183,5,0); }
  50%     { box-shadow: 0 0 0 10px rgba(242,183,5,0.12); }
}
.btn-pulse:hover { animation: none; }

/* ── SECTION SHARED ── */
.sec { padding: 72px var(--page-px); }
.sec-container { max-width: var(--max-w); margin: 0 auto; }
.sec-label {
  font-family: var(--font-display); font-weight: 600; font-size: 11px;
  letter-spacing: 4px; text-transform: uppercase; color: var(--yellow);
  margin-bottom: 10px;
}
.sec-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(26px, 5vw, 42px); line-height: 1.05;
  text-transform: uppercase; color: var(--offwhite); margin-bottom: 40px;
  text-wrap: balance;
}

/* ── SERVICES  ENHANCED ── */
.services { background: var(--graphite); }
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.svc-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px 22px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative; overflow: hidden;
}
/* Animated top border line on hover */
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--yellow);
  transition: width 0.5s cubic-bezier(0.16,1,0.3,1);
}
.svc-card:hover::before { width: 100%; }
/* Subtle radial glow on hover */
.svc-card::after {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,183,5,0.04) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.5s;
  pointer-events: none;
}
.svc-card:hover::after { opacity: 1; }
.svc-card:hover {
  background: rgba(242,183,5,0.05); border-color: var(--border-yellow);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
/* Number badge */
.svc-num {
  font-family: var(--font-display); font-weight: 800; font-size: 48px;
  color: rgba(255,255,255,0.03); position: absolute; top: 12px; right: 16px;
  line-height: 1; pointer-events: none;
  transition: color 0.4s cubic-bezier(0.16,1,0.3,1);
}
.svc-card:hover .svc-num { color: rgba(242,183,5,0.08); }
/* Icon container */
.svc-icon-wrap {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(242,183,5,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; position: relative; z-index: 1;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.svc-card:hover .svc-icon-wrap {
  background: rgba(242,183,5,0.15);
  transform: scale(1.08) rotate(-3deg);
}
.svc-icon {
  width: 24px; height: 24px; color: var(--yellow);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.svc-card:hover .svc-icon { transform: scale(1.1); }
.svc-card h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--offwhite); margin-bottom: 6px; position: relative; z-index: 1;
}
.svc-card p {
  font-size: 14px; color: var(--steel-light); line-height: 1.55;
  position: relative; z-index: 1;
}

/* ── STATS ── */
.stats {
  background: var(--black);
  border-top: 1px solid var(--border-yellow);
  border-bottom: 1px solid var(--border-yellow);
  padding: 56px var(--page-px);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px; max-width: 900px; margin: 0 auto; text-align: center;
}
.stat-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(34px, 8vw, 54px); color: var(--yellow); line-height: 1;
  transition: text-shadow 0.4s;
}
.stat-num.glow { text-shadow: 0 0 20px var(--yellow-glow); }
.stat-lbl {
  font-family: var(--font-display); font-weight: 500; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--steel-light); margin-top: 6px;
}

/* ── TESTIMONIALS ── */
.depo { background: var(--graphite); }
.depo-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.depo-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px 22px; position: relative;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
.depo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  border-color: var(--border-yellow);
}
.depo-quote {
  font-family: var(--font-display); font-weight: 800; font-size: 56px;
  color: var(--yellow); opacity: 0.2; position: absolute;
  top: 10px; left: 18px; line-height: 1; pointer-events: none;
}
.depo-text {
  font-size: 15px; line-height: 1.7; color: var(--offwhite);
  margin-bottom: 18px; position: relative; z-index: 1;
}
.depo-author { display: flex; align-items: center; gap: 10px; }
.depo-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(242,183,5,0.12);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 15px; color: var(--yellow); flex-shrink: 0;
  transition: background 0.3s;
}
.depo-card:hover .depo-av { background: rgba(242,183,5,0.2); }
.depo-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; color: var(--offwhite);
}
.depo-role { font-size: 12px; color: var(--steel); }
.depo-cta {
  margin-top: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  text-align: center;
}
.depo-cta p {
  font-family: var(--font-display); font-size: 18px; font-weight: 500;
  color: var(--steel-light); letter-spacing: 0.5px;
}

/* ── FAQ ── */
.faq-sec { background: var(--black); }
.faq-list {
  max-width: 780px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 8px;
}
.faq-item {
  border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.active {
  border-color: var(--border-yellow);
  box-shadow: 0 0 24px rgba(242,183,5,0.05);
}
.faq-q {
  width: 100%; background: none; border: none;
  padding: 18px 20px; display: flex; justify-content: space-between;
  align-items: center; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  color: var(--offwhite); text-align: left; transition: color 0.2s; gap: 12px;
}
.faq-q:hover { color: var(--yellow); }
.faq-chev {
  width: 18px; height: 18px; color: var(--steel); flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), color 0.2s;
}
.faq-item.active .faq-chev { transform: rotate(180deg); color: var(--yellow); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
}
.faq-a-inner {
  padding: 0 20px 18px; font-size: 14px;
  line-height: 1.7; color: var(--steel-light);
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--yellow); text-align: center; padding: 72px 20px;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.08); pointer-events: none;
}
.cta-band h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(26px, 6vw, 46px); line-height: 1.05;
  text-transform: uppercase; color: var(--black); margin-bottom: 14px;
  text-wrap: balance; position: relative;
}
.cta-band p {
  font-size: 16px; color: var(--graphite); max-width: 460px;
  margin: 0 auto 32px; line-height: 1.6; position: relative;
}

/* ── MODAL ── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal {
  background: var(--graphite); border: 1px solid var(--border-yellow);
  border-radius: 16px; width: 100%; max-width: 480px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5);
}
.modal-head {
  padding: 24px 24px 0; display: flex;
  justify-content: space-between; align-items: flex-start;
}
.modal-head h2 {
  font-family: var(--font-display); font-weight: 800; font-size: 24px;
  letter-spacing: 1px; text-transform: uppercase; color: var(--offwhite);
}
.modal-head p {
  font-size: 13px; color: var(--steel-light); margin-top: 4px;
}
.modal-close {
  background: none; border: none; cursor: pointer;
  color: var(--steel); font-size: 24px; line-height: 1;
  padding: 4px; transition: color 0.2s;
}
.modal-close:hover { color: var(--offwhite); }
.modal-body { padding: 20px 24px 24px; }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--steel-light); margin-bottom: 6px;
}
.form-input, .form-textarea, .form-select {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 12px 14px; color: var(--offwhite);
  font-family: var(--font-body); font-size: 15px;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(242,183,5,0.1);
}
.form-input::placeholder, .form-textarea::placeholder {
  color: var(--steel);
}
.form-textarea { resize: vertical; min-height: 80px; }
.form-select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235A6068' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px;
}
.form-select option { background: var(--graphite); color: var(--offwhite); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-submit {
  width: 100%; margin-top: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  letter-spacing: 1px; text-transform: uppercase;
  background: var(--yellow); color: var(--black); border: none;
  padding: 16px; border-radius: 8px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.2s cubic-bezier(0.65,0,0.35,1);
  position: relative; overflow: hidden;
}
.modal-submit::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s cubic-bezier(0.16,1,0.3,1);
}
.modal-submit:hover::after { left: 120%; }
.modal-submit:hover {
  background: var(--yellow-hover); transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--yellow-glow);
}
.modal-submit:active { transform: scale(0.98); }
/* Success state */
.modal-success {
  text-align: center; padding: 40px 24px;
  display: none; flex-direction: column; align-items: center; gap: 16px;
}
.modal-success.show { display: flex; }
.modal-success .check-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(242,183,5,0.12); display: flex;
  align-items: center; justify-content: center;
}
.modal-success h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 22px;
  text-transform: uppercase; color: var(--offwhite);
}
.modal-success p { font-size: 14px; color: var(--steel-light); line-height: 1.6; }

/* ── MARCAS CARROSSEL ── */
.marcas {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marcas-label {
  font-family: var(--font-display); font-weight: 600; font-size: 11px;
  letter-spacing: 4px; text-transform: uppercase; color: var(--steel);
  text-align: center; margin-bottom: 28px;
}
.marcas-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
}
.marcas-track {
  display: flex; align-items: center; gap: 60px;
  width: max-content;
  animation: marcas-scroll 30s linear infinite;
}
.marcas-track:hover { animation-play-state: paused; }
.marca-item {
  height: 28px; flex-shrink: 0;
}
.marca-item img {
  height: 100%; width: auto; display: block;
  filter: brightness(0) invert(0.22);
  transition: filter 0.2s;
}
.marca-item:hover img { filter: brightness(0) invert(0.42); }
@keyframes marcas-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── FOOTER ── */
.footer {
  background: var(--graphite); padding: 44px 20px 28px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 28px;
}
.footer-logo {
  height: auto; width: 45%; display: block; margin-bottom: 10px;
}
.footer-brand p { font-size: 13px; color: var(--steel); line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--steel-light); margin-bottom: 10px;
}
.footer-col a {
  display: block; font-size: 14px; color: var(--steel);
  margin-bottom: 7px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--yellow); }
address.footer-col { font-style: normal; }
.footer-bot {
  max-width: var(--max-w); margin: 28px auto 0; padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center; font-size: 12px; color: var(--steel);
}

/* ── ANIMATIONS ── */
.rv { opacity: 1; transform: translateY(0); }
.rv.rv-init {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.rv.rv-init.vis { opacity: 1; transform: translateY(0); }
.rv-d1 { transition-delay: 0.1s; }
.rv-d2 { transition-delay: 0.2s; }
.rv-d3 { transition-delay: 0.3s; }
.rv-d4 { transition-delay: 0.4s; }
.rv-d5 { transition-delay: 0.5s; }

.yd {
  width: 48px; height: 3px; background: var(--yellow);
  border-radius: 2px; margin-bottom: 20px;
}

/* ── FAQ overrides ── */
.faq-sec .yd { display: none; }
.faq-sec .sec-label,
.faq-sec .sec-title { text-align: center; }

/* ── SCAN CARD (Hero widget) ── */
.scan-card {
  width: 100%; max-width: 460px;
  background: rgba(17,19,21,0.65);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(242,183,5,0.12);
  border-radius: 18px; padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
}
.scan-card::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242,183,5,0.55), transparent);
}
.sc-label {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--steel);
}
.sc-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--yellow);
  box-shadow: 0 0 7px var(--yellow-glow-strong); flex-shrink: 0;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }
/* Screen */
.sc-screen {
  position: relative; border-radius: 8px; overflow: hidden;
  background: rgba(242,183,5,0.018);
  border: 1px solid rgba(242,183,5,0.09);
  aspect-ratio: 430 / 148;
}
.sc-truck {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
/* Scan line (SVG element) */
.sc-line-svg {
  filter: drop-shadow(0 0 3px rgba(242,183,5,0.6));
}
/* Scan dots (SVG circles) */
.sc-dot-svg {
  fill: rgba(242,183,5,0.25);
  animation: sc-glow 7s ease-in-out infinite;
}
.sc-dp2 { animation-delay: 1.75s; }
.sc-dp3 { animation-delay: 3.5s; }
.sc-dp4 { animation-delay: 5.25s; }
@keyframes sc-glow {
  0%,10%   { fill: rgba(242,183,5,0.2); filter: none; }
  22%,32%  { fill: rgba(242,183,5,1);   filter: drop-shadow(0 0 5px rgba(242,183,5,0.9)); }
  45%,100% { fill: rgba(242,183,5,0.2); filter: none; }
}
/* Stats */
.sc-stats {
  display: flex; justify-content: space-between;
  padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.06);
}
.sc-stat { display: flex; flex-direction: column; gap: 4px; }
.sc-stat strong {
  font-family: var(--font-display); font-weight: 500; font-size: 22px;
  line-height: 1; color: var(--offwhite); letter-spacing: 0;
}
.sc-stat span {
  font-family: var(--font-display); font-size: 10px;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--steel-light);
}

/* ── LOCALIZAÇÃO ── */
.localizacao { background: var(--graphite); }
.loc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}
.loc-map {
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
  height: 220px;
}
.loc-map iframe { width: 100%; height: 100%; display: block; }
.loc-info { display: flex; flex-direction: column; gap: 20px; }
.loc-fachada {
  width: 100%; border-radius: 12px;
  border: 1px solid var(--border);
  object-fit: cover; max-height: 360px;
}
.loc-details { display: flex; flex-direction: column; gap: 16px; }
.loc-item {
  display: flex; align-items: flex-start; gap: 14px;
  color: var(--steel-light);
}
.loc-item svg { color: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.loc-item strong {
  display: block;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--offwhite); margin-bottom: 3px;
}
.loc-item p { font-size: 14px; line-height: 1.5; margin: 0; }
@media (min-width: 768px) {
  .loc-grid { grid-template-columns: 5fr 6fr; gap: 48px; }
  .loc-map { height: 100%; min-height: 260px; }
  .loc-fachada { max-height: 280px; }
}
@media (min-width: 1024px) {
  .loc-grid { grid-template-columns: 5fr 6fr; gap: 64px; }
  .loc-map { min-height: 300px; }
  .loc-fachada { max-height: 360px; }
}

/* ── CÂMBIOS E TRANSMISSÕES ── */
.cambios { background: var(--black); }
.cambios-intro {
  font-size: 16px; line-height: 1.65; color: var(--steel-light);
  max-width: 720px; margin: -24px 0 40px;
}
.cambios-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.cambio-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px 24px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative; overflow: hidden;
}
.cambio-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--yellow);
  transition: height 0.5s cubic-bezier(0.16,1,0.3,1);
}
.cambio-card:hover::before { height: 100%; }
.cambio-card:hover {
  background: rgba(242,183,5,0.05); border-color: var(--border-yellow);
  transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.cambio-icon-wrap {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(242,183,5,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.cambio-card:hover .cambio-icon-wrap {
  background: rgba(242,183,5,0.15); transform: scale(1.08) rotate(-3deg);
}
.cambio-icon { width: 26px; height: 26px; color: var(--yellow); }
.cambio-card h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--offwhite); margin-bottom: 8px;
}
.cambio-card p { font-size: 14px; color: var(--steel-light); line-height: 1.6; }

/* ── SOBRE / TRAJETÓRIA ── */
.sobre { background: var(--graphite); }
.sobre-grid { display: grid; grid-template-columns: 1fr; gap: 44px; }
.sobre-bio { font-size: 16px; line-height: 1.75; color: var(--steel-light); }
.sobre-bio strong { color: var(--offwhite); font-weight: 600; }
.timeline {
  list-style: none; margin: 0; padding: 0;
  position: relative;
}
.timeline::before {
  content: ''; position: absolute; left: 7px; top: 6px; bottom: 6px;
  width: 2px; background: linear-gradient(var(--border-yellow), transparent);
}
.tl-item {
  position: relative; padding: 0 0 26px 36px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ''; position: absolute; left: 2px; top: 5px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--graphite); border: 2px solid var(--steel);
  transition: all 0.3s;
}
.tl-item.tl-now::before {
  background: var(--yellow); border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(242,183,5,0.15);
}
.tl-year {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 4px;
}
.tl-body h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  letter-spacing: 0.5px; color: var(--offwhite); margin-bottom: 2px;
}
.tl-body p { font-size: 14px; color: var(--steel-light); line-height: 1.5; }

/* ── GALERIA ── */
.galeria { background: var(--graphite-light); }
.galeria-intro {
  font-size: 16px; line-height: 1.65; color: var(--steel-light);
  max-width: 720px; margin: -24px 0 28px;
}
.galeria-filtros {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
}
.gal-filtro {
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 30px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.03);
  color: var(--steel-light); cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.gal-filtro:hover { color: var(--offwhite); border-color: var(--steel); }
.gal-filtro.active {
  background: var(--yellow); border-color: var(--yellow);
  color: var(--black);
}
.galeria-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.gal-item {
  position: relative; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); background: var(--black);
  aspect-ratio: 4 / 3;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1),
              border-color 0.3s, opacity 0.4s;
}
.gal-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.gal-item:hover { border-color: var(--border-yellow); }
.gal-item:hover img { transform: scale(1.06); }
.gal-item figcaption {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(10,11,12,0.92) 0%, rgba(10,11,12,0.3) 45%, transparent 75%);
  opacity: 0; transition: opacity 0.4s;
}
.gal-item:hover figcaption { opacity: 1; }
.gal-cat {
  font-family: var(--font-display); font-weight: 700; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--yellow);
  margin-bottom: 3px;
}
.gal-legenda {
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  line-height: 1.2; color: var(--offwhite);
}
.gal-item.gal-hide {
  display: none;
}
@media (min-width: 580px) {
  .cambios-grid { grid-template-columns: repeat(2, 1fr); }
  .galeria-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .cambios-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .cambios-grid { grid-template-columns: repeat(4, 1fr); }
  .galeria-grid { grid-template-columns: repeat(4, 1fr); }
  .sobre-grid { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
  .sobre-intro { position: sticky; top: calc(var(--nav-h) + 24px); }
}

/* ═══════════════════════════════════════════
   SEGMENTOS  navegação, cards e página interna
   ═══════════════════════════════════════════ */

/* ── Dropdown de veículos no nav ── */
.nav-drop { position: relative; }
.nav-drop-trigger { display: flex; align-items: center; gap: 5px; }
.nav-drop-trigger svg {
  width: 13px; height: 13px; margin-top: 1px;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.nav-drop:hover .nav-drop-trigger svg,
.nav-drop:focus-within .nav-drop-trigger svg { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute; top: calc(100% + 14px); left: -14px;
  list-style: none; min-width: 248px; padding: 8px;
  background: rgba(24,27,30,0.98); backdrop-filter: blur(14px);
  border: 1px solid var(--border-yellow); border-radius: 12px;
  box-shadow: 0 20px 44px rgba(0,0,0,0.45);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.25s, transform 0.25s cubic-bezier(0.16,1,0.3,1), visibility 0.25s;
}
.nav-drop::after {
  content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 18px;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-drop-menu a {
  display: block; padding: 9px 12px; border-radius: 8px;
  font-size: 12px; letter-spacing: 1px; color: var(--steel-light);
  transition: background 0.2s, color 0.2s;
}
.nav-drop-menu a::after { display: none; }
.nav-drop-menu a:hover { background: rgba(242,183,5,0.09); color: var(--yellow); }

/* ── Menu mobile com grupos ── */
.mob-menu {
  justify-content: flex-start; gap: 12px;
  padding: 76px 24px 44px; overflow-y: auto;
}
.mob-menu a { font-size: 18px; letter-spacing: 2px; }
.mob-group {
  font-family: var(--font-display); font-weight: 700; font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase; color: var(--yellow);
  margin-top: 14px;
}
.mob-group:first-of-type { margin-top: 0; }

/* ── Cards de segmento (home e rodapé de página) ── */
.seg-home { background: var(--black); }
.seg-intro {
  font-size: 15px; color: var(--steel-light); line-height: 1.65;
  max-width: 640px; margin: -24px 0 36px;
}
.seg-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.seg-card {
  display: flex; flex-direction: column; gap: 8px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 12px; padding: 26px 22px; position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.seg-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--yellow);
  transition: width 0.5s cubic-bezier(0.16,1,0.3,1);
}
.seg-card:hover::before { width: 100%; }
.seg-card:hover {
  background: rgba(242,183,5,0.05); border-color: var(--border-yellow);
  transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.seg-card-ico {
  width: 46px; height: 46px; border-radius: 10px;
  background: rgba(242,183,5,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.seg-card-ico svg { width: 24px; height: 24px; color: var(--yellow); }
.seg-card:hover .seg-card-ico { background: rgba(242,183,5,0.16); transform: scale(1.07); }
.seg-card h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  letter-spacing: 0.5px; text-transform: uppercase; color: var(--offwhite);
}
.seg-card p { font-size: 14px; color: var(--steel-light); line-height: 1.55; flex: 1; }
.seg-card-link {
  font-family: var(--font-display); font-weight: 600; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--yellow);
  margin-top: 6px;
}

/* ── Hero da página de segmento ── */
.seg-hero {
  position: relative; overflow: hidden;
  background: var(--graphite);
  border-bottom: 1px solid var(--border-yellow);
  padding: calc(var(--nav-h) + 44px) var(--page-px) 56px;
}
.seg-hero-inner { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; }
.crumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--steel); margin-bottom: 26px;
}
.crumb a { color: var(--steel-light); transition: color 0.2s; }
.crumb a:hover { color: var(--yellow); }
.crumb strong { color: var(--yellow); font-weight: 600; }
.seg-hero-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
.seg-hero-content { display: flex; flex-direction: column; gap: 20px; }
.seg-h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(32px, 7.5vw, 60px); line-height: 0.98;
  letter-spacing: -0.5px; text-transform: uppercase;
  color: var(--offwhite); text-wrap: balance;
}
.seg-chamada {
  font-size: 15px; line-height: 1.7; color: var(--steel-light); max-width: 620px;
}
.seg-hero-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-yellow);
  border-radius: 14px; padding: 24px 22px;
}
.seg-card-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(242,183,5,0.1);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.seg-card-icon svg { width: 26px; height: 26px; color: var(--yellow); }
.seg-card-label {
  font-family: var(--font-display); font-weight: 600; font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--yellow);
  margin-bottom: 12px;
}
.seg-destaques { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.seg-destaques li { display: flex; gap: 10px; align-items: flex-start; }
.seg-destaques svg { width: 16px; height: 16px; color: var(--yellow); flex-shrink: 0; margin-top: 3px; }
.seg-destaques span { font-size: 14px; line-height: 1.5; color: var(--offwhite); }
.seg-card-tel {
  display: flex; align-items: center; gap: 8px; margin-top: 20px;
  padding-top: 16px; border-top: 1px solid var(--border);
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  letter-spacing: 1px; color: var(--yellow); transition: opacity 0.2s;
}
.seg-card-tel svg { width: 16px; height: 16px; }
.seg-card-tel:hover { opacity: 0.75; }

/* ── Sintomas ── */
.seg-sintomas { background: var(--black); }
.seg-check-grid {
  list-style: none; display: grid; grid-template-columns: 1fr; gap: 12px;
}
.seg-check {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(255,255,255,0.025); border: 1px solid var(--border);
  border-left: 2px solid var(--border-yellow);
  border-radius: 10px; padding: 14px 16px;
  transition: border-color 0.3s, background 0.3s;
}
.seg-check:hover { background: rgba(242,183,5,0.04); border-left-color: var(--yellow); }
.seg-check svg { width: 18px; height: 18px; color: var(--yellow); flex-shrink: 0; margin-top: 1px; }
.seg-check span { font-size: 14px; line-height: 1.5; color: var(--steel-light); }
.seg-nota {
  margin-top: 28px; font-size: 14px; color: var(--steel-light);
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
}
.seg-link-btn {
  background: none; border: none; cursor: pointer; padding: 0;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--yellow);
  border-bottom: 1px solid var(--border-yellow); transition: border-color 0.25s;
}
.seg-link-btn:hover { border-bottom-color: var(--yellow); }

/* ── Marcas do segmento ── */
.seg-marcas-sec { background: var(--graphite); }
.seg-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.seg-chip {
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--steel-light);
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 999px; padding: 9px 18px;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.seg-chip:hover {
  color: var(--yellow); border-color: var(--border-yellow);
  background: rgba(242,183,5,0.06); transform: translateY(-2px);
}

/* ── Passos ── */
.seg-passos-sec { background: var(--black); }
.seg-passos { list-style: none; display: grid; grid-template-columns: 1fr; gap: 14px; }
.seg-passo {
  position: relative; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); border-radius: 12px; padding: 26px 22px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.seg-passo:hover { border-color: var(--border-yellow); transform: translateY(-3px); }
.seg-passo-num {
  font-family: var(--font-display); font-weight: 800; font-size: 40px;
  color: rgba(242,183,5,0.16); line-height: 1; display: block; margin-bottom: 8px;
}
.seg-passo h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--offwhite); margin-bottom: 6px;
}
.seg-passo p { font-size: 14px; color: var(--steel-light); line-height: 1.55; }

/* ── Outros segmentos / links cruzados ── */
.seg-outros { background: var(--graphite); }
.seg-cruzados { background: var(--black); padding-top: 56px; padding-bottom: 56px; }
.seg-links {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px;
}
.seg-links a {
  display: block;
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--steel-light);
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 16px;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.seg-links a:hover {
  color: var(--yellow); border-color: var(--border-yellow);
  background: rgba(242,183,5,0.06); transform: translateY(-2px);
}
.seg-card-local {
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border);
  font-size: 13px; line-height: 1.5; color: var(--steel-light);
}
.seg-card-local + .seg-card-tel { margin-top: 12px; padding-top: 0; border-top: 0; }

/* Cards de serviço clicáveis na home */
.svc-card-link { display: flex; flex-direction: column; }
.svc-card-link p { flex: 1; }
.svc-card-link .seg-card-link { margin-top: 12px; }

/* Dropdown de serviços em duas colunas */
@media (min-width: 1024px) {
  .nav-drop-2col {
    display: grid; grid-template-columns: repeat(2, minmax(200px, 1fr));
    min-width: 440px;
  }
}

@media (min-width: 580px) {
  .seg-grid { grid-template-columns: repeat(2, 1fr); }
  .seg-check-grid { grid-template-columns: repeat(2, 1fr); }
  .seg-passos { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .seg-hero { padding: calc(var(--nav-h) + 64px) 36px 72px; }
  .seg-hero-grid { grid-template-columns: 1.4fr 0.9fr; gap: 48px; }
  .seg-intro { font-size: 16px; }
  .seg-chamada { font-size: 17px; }
}
@media (min-width: 1024px) {
  .seg-hero { padding: calc(var(--nav-h) + 72px) 56px 88px; }
  .seg-grid { grid-template-columns: repeat(3, 1fr); }
  .seg-passos { grid-template-columns: repeat(4, 1fr); }
}

/* ── BOTÃO FLUTUANTE WHATSAPP ── */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 400;
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25D366; color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 0 0 0 rgba(37,211,102,0.45);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.3s, background 0.3s;
}
.wa-float:hover {
  background: #1EBE5A; transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45), 0 0 0 8px rgba(37,211,102,0.14);
}
.wa-float:focus-visible {
  outline: 2px solid var(--yellow); outline-offset: 3px;
}
@media (min-width: 768px) {
  .wa-float { right: 28px; bottom: 28px; width: 58px; height: 58px; }
}

/* ── RESPONSIVE ── */
@media (max-width: 767px) {
  .scan-card { max-width: 100%; }
}
@media (min-width: 580px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .depo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .sec { padding: 96px 36px; }
  .nav { padding: 0 36px; }
  .hero { padding: calc(var(--nav-h) + 60px) 36px 80px; }
  .hero-inner { flex-direction: column; }
  .scan-card { display: flex; }
  .nav-links { display: flex; }
  .menu-btn { display: none; }
  .footer-inner { grid-template-columns: 1.7fr 1.1fr 0.9fr 1.1fr; }
  .stats { padding: 64px 36px; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .cta-band { padding: 96px 36px; }
}
@media (min-width: 1024px) {
  .sec { padding: 112px 56px; }
  .nav { padding: 0 56px; }
  .hero { padding: calc(var(--nav-h) + 20px) 56px 80px; min-height: 100vh; }
  .hero-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 56px; }
  .hero-h1 { font-size: clamp(38px, 5.5vw, 64px); }
  .svc-grid { grid-template-columns: repeat(4, 1fr); }
  .depo-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-z { width: 55vw; max-width: 680px; right: -8%; opacity: 0.055; }
}
