/* ============================================================
   TAYCOON SPA AUTOMOTIVO — Design System
   ============================================================ */

:root {
  --black: #040405;
  --black-soft: #0a0a0c;
  --panel: #0e0e11;
  --panel-2: #131316;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  --chrome-1: #ffffff;
  --chrome-2: #d7d9dd;
  --chrome-3: #9a9ca2;

  --blue: #1a5cff;
  --blue-2: #2f7dff;
  --blue-light: #6fa4ff;
  --blue-glow: rgba(26, 92, 255, 0.45);

  --text: #eceef1;
  --text-dim: #a7abb3;
  --text-faint: #6c7078;

  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--chrome-1);
}

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

.section { padding: 120px 0; position: relative; }
.section-alt { background: var(--black-soft); }

@media (max-width: 768px) {
  .section { padding: 80px 0; }
}

/* ---------- Typography helpers ---------- */

.chrome-text {
  background: linear-gradient(180deg, var(--chrome-1) 0%, var(--chrome-2) 45%, var(--chrome-3) 55%, var(--chrome-1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}

.blue-text {
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--blue) 60%, var(--blue-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 20px;
}

.section-sub {
  color: var(--text-dim);
  font-size: 17px;
  max-width: 560px;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head .section-sub { margin: 0 auto; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  color: #fff;
  box-shadow: 0 8px 30px -8px var(--blue-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -8px var(--blue-glow);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--chrome-1);
  border-color: var(--line-strong);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  border-color: var(--blue);
  background: rgba(26, 92, 255, 0.08);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 40px; font-size: 15px; }
.btn-block { width: 100%; }

/* ============================================================
   LOADER
   ============================================================ */

#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
#loader.hide { opacity: 0; visibility: hidden; }
.loader-icon {
  width: 72px;
  height: 72px;
  animation: pulse 1.4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px var(--blue-glow));
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .8; }
  50% { transform: scale(1.08); opacity: 1; }
}

/* ============================================================
   HEADER
   ============================================================ */

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
header.scrolled {
  padding: 14px 0;
  background: rgba(4, 4, 5, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo { height: 34px; width: auto; }

#nav ul { display: flex; gap: 26px; }

.nav-link {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  padding-bottom: 4px;
  transition: color .3s var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width .35s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--chrome-1); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-cta { flex-shrink: 0; }

#navToggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  cursor: pointer;
}
#navToggle span {
  width: 18px;
  height: 2px;
  background: var(--chrome-1);
  margin: 0 auto;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
#navToggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#navToggle.open span:nth-child(2) { opacity: 0; }
#navToggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1180px) {
  #nav {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 80vw);
    height: 100vh;
    background: rgba(8, 8, 10, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--line);
    padding: 100px 32px 32px;
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    z-index: 999;
    overflow-y: auto;
  }
  #nav.open { transform: translateX(0); }
  #nav ul { flex-direction: column; gap: 24px; }
  .header-cta { display: none; }
  #navToggle { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
  overflow: hidden;
  background: var(--black);
  padding: 140px 0 100px;
}

/* full-bleed brand photo, kept deliberately low-opacity + soft as a mood layer */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 38%;
  opacity: .4;
  filter: grayscale(.3) contrast(1.08) brightness(.85) saturate(1.05) blur(.5px);
  transform: scale(1.08);
  animation: heroKenBurns 22s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  from { transform: scale(1.08) translate(0, 0); }
  to { transform: scale(1.16) translate(-1%, -1%); }
}

/* scrim: solid on the text side, opens up toward the image */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, var(--black) 0%, rgba(4,4,5,.94) 32%, rgba(4,4,5,.55) 58%, rgba(4,4,5,.25) 78%, rgba(4,4,5,.1) 100%),
    linear-gradient(0deg, var(--black) 0%, transparent 22%, transparent 80%, rgba(4,4,5,.6) 100%);
}

/* blue duotone grade to keep the photo on-brand rather than raw color */
.hero-duotone {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(10,20,50,.55), rgba(26,92,255,.12) 45%, rgba(4,4,5,.4));
  mix-blend-mode: color;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(100deg, black 0%, black 45%, transparent 75%);
}

/* filmic grain for a premium, non-flat texture */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .05;
  mix-blend-mode: overlay;
  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='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, transparent 16%, transparent 82%, var(--black) 100%),
    radial-gradient(ellipse 120% 90% at 100% 50%, transparent 55%, rgba(0,0,0,.5) 100%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 660px; margin: 0; }

.eyebrow-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.eyebrow-bar {
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue));
  position: relative;
}
.eyebrow-bar::after {
  content: '';
  position: absolute;
  top: 50%; right: 0;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue-light);
  transform: translateY(-50%);
  box-shadow: 0 0 10px 2px var(--blue-glow);
}
.eyebrow--hero { margin: 0; }
.eyebrow--hero::before { display: none; }

.hero-title {
  font-size: clamp(38px, 6.4vw, 72px);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0 0 26px;
  text-shadow: 0 4px 40px rgba(0,0,0,.6);
}
.hero-title span { display: block; }

.chrome-text.shimmer {
  background: linear-gradient(100deg, var(--chrome-1) 30%, var(--blue-light) 45%, var(--chrome-1) 60%, var(--chrome-2) 75%, var(--chrome-1) 90%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmerMove 5s ease-in-out infinite;
}
@keyframes shimmerMove {
  0% { background-position: 200% 0; }
  100% { background-position: -50% 0; }
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--chrome-2);
  max-width: 560px;
  margin: 0 0 40px;
  text-shadow: 0 2px 16px rgba(0,0,0,.7);
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-glow { position: relative; }
.btn-glow::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  z-index: -1;
  opacity: 0;
  filter: blur(14px);
  transition: opacity .4s var(--ease);
}
.btn-glow:hover::after { opacity: .7; }

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--chrome-2);
}
.trust-item svg { width: 18px; height: 18px; color: var(--blue-light); flex-shrink: 0; }
.trust-divider { width: 1px; height: 16px; background: rgba(255,255,255,.18); }

.scroll-indicator {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-badge {
  width: 30px;
  height: 46px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.28);
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 8px 2px var(--blue-glow);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(20px); opacity: 0; }
  71% { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.scroll-label {
  font-family: 'Oswald', sans-serif;
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-faint);
}

@media (max-width: 900px) {
  .hero-photo { object-position: 60% 35%; }
}

@media (max-width: 600px) {
  #hero { padding: 120px 0 90px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { gap: 16px; }
  .trust-item span { display: none; }
  .trust-item svg { width: 20px; height: 20px; }
  .hero-photo { opacity: .3; object-position: 50% 30%; }
}

/* ============================================================
   MARQUEE
   ============================================================ */

.marquee-wrap {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  animation: marquee 32s linear infinite;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--chrome-2);
}
.marquee-track i {
  color: var(--blue);
  font-style: normal;
  font-size: 10px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.about-media { position: relative; }
.about-media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.02) inset;
  position: relative;
}
.about-media-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.5));
  pointer-events: none;
}
.about-media-frame img { width: 100%; height: 100%; object-fit: cover; }

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 88px;
  height: 88px;
  background: var(--black);
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px -10px var(--blue-glow), 0 0 0 8px var(--black);
}
.about-badge img { width: 56px; height: 56px; }

.about-text p { color: var(--text-dim); margin-bottom: 18px; font-size: 16px; }

.about-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(26,92,255,.15);
  color: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 1px;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { width: 68px; height: 68px; bottom: -16px; right: 16px; }
  .about-badge img { width: 40px; height: 40px; }
}

/* ============================================================
   SERVICES
   ============================================================ */

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

.service-card {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background: #16161a;
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(26,92,255,.1);
  color: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  text-transform: none;
  letter-spacing: 0;
}
.service-card p {
  color: var(--text-dim);
  font-size: 14.5px;
  margin-bottom: 20px;
}

.service-tag {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-light);
  border: 1px solid rgba(26,92,255,.35);
  padding: 6px 14px;
  border-radius: 100px;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PROCESS
   ============================================================ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 20%, var(--line-strong) 80%, transparent);
  z-index: 0;
}
.process-step { position: relative; z-index: 1; }
.process-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--black-soft);
  border: 1px solid var(--line-strong);
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--blue-light);
  margin-bottom: 22px;
}
.process-step h3 { font-size: 18px; margin-bottom: 10px; }
.process-step p { color: var(--text-dim); font-size: 14.5px; max-width: 240px; }

@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .process-grid::before { display: none; }
}
@media (max-width: 560px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   DIFERENCIAIS
   ============================================================ */

.diff-section { position: relative; overflow: hidden; }
.diff-glow {
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--blue-glow), transparent 65%);
  filter: blur(60px);
  opacity: .35;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.diff-card {
  background: var(--black-soft);
  padding: 40px 32px;
  transition: background .4s var(--ease);
}
.diff-card:hover { background: var(--panel-2); }
.diff-card svg {
  width: 34px; height: 34px;
  color: var(--blue-light);
  margin-bottom: 20px;
}
.diff-card h3 { font-size: 17px; margin-bottom: 10px; }
.diff-card p { color: var(--text-dim); font-size: 14.5px; }

@media (max-width: 900px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .diff-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ESPAÇO
   ============================================================ */

.espaco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.espaco-text p { color: var(--text-dim); font-size: 16px; margin-bottom: 28px; }
.espaco-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.8);
}

@media (max-width: 900px) {
  .espaco-grid { grid-template-columns: 1fr; gap: 40px; }
  .espaco-grid .espaco-media { order: -1; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  position: relative;
  padding: 100px 0;
  background: var(--black-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 700px; height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, var(--blue-glow), transparent 70%);
  filter: blur(50px);
  opacity: .4;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.cta-inner h2 {
  font-size: clamp(26px, 4vw, 38px);
  max-width: 700px;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
}

.contact-info { display: flex; flex-direction: column; gap: 26px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(26,92,255,.1);
  color: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-icon svg { width: 20px; height: 20px; }
.info-item h4 { font-size: 13px; letter-spacing: .1em; margin-bottom: 4px; color: var(--chrome-1); }
.info-item p { color: var(--text-dim); font-size: 14.5px; }

.map-frame {
  margin-top: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  height: 220px;
  filter: grayscale(1) invert(.92) contrast(.85);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.contact-form {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-row input,
.form-row select,
.form-row textarea {
  background: var(--black-soft);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  transition: border-color .3s var(--ease);
  resize: vertical;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236fa4ff' stroke-width='1.6' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px; }
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer { background: var(--black); border-top: 1px solid var(--line); padding-top: 64px; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}
.footer-brand img { height: 28px; margin-bottom: 10px; }
.footer-brand p { color: var(--text-faint); font-size: 13px; letter-spacing: .05em; }

.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color .3s var(--ease);
}
.footer-nav a:hover { color: var(--chrome-1); }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: all .3s var(--ease);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover {
  color: var(--blue-light);
  border-color: var(--blue);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.footer-bottom p {
  font-size: 12.5px;
  color: var(--text-faint);
  text-align: center;
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */

.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #1da851);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -6px rgba(37, 211, 102, .5);
  z-index: 900;
  transition: transform .3s var(--ease);
  animation: floatPulse 2.6s ease-in-out infinite;
}
.float-whatsapp:hover { transform: scale(1.08); }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 10px 30px -6px rgba(37,211,102,.5); }
  50% { box-shadow: 0 10px 40px -4px rgba(37,211,102,.75); }
}

#backToTop {
  position: fixed;
  bottom: 28px;
  right: 100px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--panel-2);
  border: 1px solid var(--line-strong);
  color: var(--chrome-1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .35s var(--ease);
}
#backToTop.show { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { border-color: var(--blue); color: var(--blue-light); }

@media (max-width: 600px) {
  .float-whatsapp { width: 54px; height: 54px; bottom: 20px; right: 20px; }
  #backToTop { width: 42px; height: 42px; bottom: 20px; right: 82px; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children within a grid/section slightly */
.services-grid .service-card.in-view { transition-delay: calc(var(--i, 0) * 60ms); }
.process-grid .process-step.in-view { transition-delay: calc(var(--i, 0) * 80ms); }
.diff-grid .diff-card.in-view { transition-delay: calc(var(--i, 0) * 70ms); }
.testimonial-grid .testimonial-card.in-view { transition-delay: calc(var(--i, 0) * 80ms); }

/* ============================================================
   STATS BAND
   ============================================================ */

.stats-band {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.stat-sep { width: 1px; height: 44px; background: var(--line-strong); }

@media (max-width: 700px) {
  .stats-grid { gap: 28px; }
  .stat-sep { display: none; }
}

/* ============================================================
   SERVICE CARD FOOT / LINK
   ============================================================ */

.service-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.service-link {
  font-family: 'Oswald', sans-serif;
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue-light);
  white-space: nowrap;
  transition: gap .3s var(--ease);
  display: inline-flex;
}
.service-link:hover { text-decoration: underline; }

/* ============================================================
   SERVICE DETAIL ROWS
   ============================================================ */

.detail-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.detail-row:last-child { border-bottom: none; padding-bottom: 0; }
.detail-row:first-child { padding-top: 0; }
.detail-row.reverse { direction: rtl; }
.detail-row.reverse > * { direction: ltr; }

.detail-media { position: relative; }
.detail-panel {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 70% 60% at 30% 20%, rgba(26,92,255,.18), transparent 60%),
    linear-gradient(160deg, var(--panel-2), var(--black-soft));
  border: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.detail-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 30%, transparent 80%);
}
.detail-panel svg {
  width: 30%;
  max-width: 120px;
  color: var(--blue-light);
  filter: drop-shadow(0 0 30px var(--blue-glow));
  position: relative;
  z-index: 1;
}
.detail-badge {
  position: relative;
  z-index: 1;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--chrome-1);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line-strong);
  padding: 8px 18px;
  border-radius: 100px;
}

.detail-text .eyebrow { margin-bottom: 12px; }
.detail-text h3 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 16px;
  text-transform: none;
  letter-spacing: 0;
}
.detail-text > p { color: var(--text-dim); font-size: 15.5px; margin-bottom: 22px; }

.detail-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.detail-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; }

@media (max-width: 900px) {
  .detail-row, .detail-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
    padding: 40px 0;
  }
  .detail-panel { aspect-ratio: 16 / 10; }
}

/* ============================================================
   ZERO KM PACKAGE
   ============================================================ */

.zero-km-section { position: relative; overflow: hidden; }
.zero-km-glow {
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, var(--blue-glow), transparent 65%);
  filter: blur(60px);
  opacity: .35;
}
.zero-km-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(150deg, var(--panel-2), var(--black-soft));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 64px;
  overflow: hidden;
}
.zero-km-text { max-width: 640px; margin: 0 auto; text-align: center; }
.zero-km-ribbon {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-light);
  border: 1px solid rgba(26,92,255,.4);
  background: rgba(26,92,255,.08);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.zero-km-text .section-title { margin-bottom: 18px; }
.zero-km-text > p { color: var(--text-dim); font-size: 16px; margin-bottom: 32px; }
.zero-km-list {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin: 0 auto 36px;
  text-align: left;
}
.zero-km-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; }

@media (max-width: 600px) {
  .zero-km-card { padding: 40px 24px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.testimonial-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.stars { color: var(--blue-light); font-size: 15px; letter-spacing: 3px; }
.testimonial-card p { color: var(--text); font-size: 14.5px; font-style: italic; flex-grow: 1; }
.testimonial-author { display: flex; flex-direction: column; gap: 2px; padding-top: 14px; border-top: 1px solid var(--line); }
.author-name { font-family: 'Oswald', sans-serif; font-size: 14px; letter-spacing: .04em; color: var(--chrome-1); }
.author-car { font-size: 12.5px; color: var(--text-faint); }

@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MISC
   ============================================================ */

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

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--panel-2); border-radius: 10px; border: 2px solid var(--black); }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }
