/* =====================================================
   PÉGASUS MOTO PEÇAS — style.css
   Paleta: Preto | Laranja #FF6B00 | Branco
   ===================================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:       #FF6B00;
  --orange-dark:  #e05e00;
  --orange-light: #ff8c33;
  --orange-pale:  #fff3e8;
  --black:        #0d0d0d;
  --dark:         #1a1a1a;
  --dark-2:       #252525;
  --dark-3:       #2f2f2f;
  --gray:         #6b7280;
  --gray-light:   #9ca3af;
  --border:       #2e2e2e;
  --border-light: #e5e7eb;
  --white:        #ffffff;
  --off-white:    #f9fafb;
  --text:         #1f2937;
  --text-muted:   #6b7280;

  --font:         'Inter', system-ui, -apple-system, sans-serif;
  --radius:       12px;
  --radius-sm:    8px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(0,0,0,.08);
  --shadow-md:    0 8px 40px rgba(0,0,0,.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.16);
  --shadow-orange:0 8px 32px rgba(255,107,0,.25);
  --transition:   .25s cubic-bezier(.4,0,.2,1);
  --nav-h:        72px;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
address { font-style: normal; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ---- Selection ---- */
::selection { background: var(--orange); color: var(--white); }

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

/* ---- Section base ---- */
.section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: .925rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
}
.btn-lg { padding: 16px 32px; font-size: 1.05rem; border-radius: var(--radius); }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--shadow-orange); }

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}
.btn-whatsapp:hover { background: #128c7e; border-color: #128c7e; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,.3); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); transform: translateY(-2px); }

.icon-whatsapp { width: 18px; height: 18px; flex-shrink: 0; }

/* ---- Cards base ---- */
.cards-grid {
  display: grid;
  gap: 24px;
}
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--orange); }

/* ---- Animate on scroll ---- */
[data-animate] { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
[data-animate="from-left"] { opacity: 0; transform: translateX(-48px); transition: opacity .7s ease, transform .7s ease; }
[data-animate="from-right"] { opacity: 0; transform: translateX(48px); transition: opacity .7s ease, transform .7s ease; }
[data-animate].visible,
[data-animate="from-left"].visible,
[data-animate="from-right"].visible { opacity: 1; transform: translate(0); }

/* =====================================================
   HEADER
   ===================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(13,13,13,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,.4);
}

.navbar {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 1.6rem;
  color: var(--orange);
  line-height: 1;
}
.logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}
.logo-accent { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}
.nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,107,0,.12); }

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   HERO — Video Background
   ===================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

/* Imagem de fundo ocupa todo o viewport */
.hero-img-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Overlay gradiente para legibilidade */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(0,0,0,.82) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.3) 100%),
    linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 50%);
}

/* Conteúdo */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 800px;
}

/* Label tipo "PEÇAS PARA MOTOCICLETAS" */
.hero-label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}

/* Bloco de heading com sobreposição */
.hero-heading { margin-bottom: 24px; }

.hero-line-1 {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 400;
  color: rgba(255,255,255,.28);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: -.08em;
}

.hero-line-2 {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.04em;
  /* destaque laranja na primeira letra */
  background: linear-gradient(90deg, var(--orange) 0%, var(--white) 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtítulo */
.hero-subtitle {
  font-size: clamp(.95rem, 2.2vw, 1.15rem);
  color: rgba(255,255,255,.65);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 520px;
}

/* Botões */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 40px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  line-height: 1;
  white-space: nowrap;
}

.btn-hero-outline {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}

.btn-hero-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-hero-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

/* Rating bar */
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-rating-stars {
  color: #f59e0b;
  font-size: .95rem;
  letter-spacing: 3px;
}
.hero-rating-text {
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255,255,255,.45);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-hint span::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { top: 6px; opacity: 1; }
  80%  { top: 18px; opacity: 0; }
  100% { top: 6px; opacity: 0; }
}

/* =====================================================
   DIFERENCIAIS
   ===================================================== */
.diferenciais { background: var(--off-white); }

.diferenciais .cards-grid { gap: 32px; }

.card-diferencial {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Card Oficina — background image */
.card-oficina {
  position: relative;
  overflow: hidden;
  background-image: url('../man-fixing-motorcycle-modern-workshop.jpg');
  background-size: cover;
  background-position: center;
  border-color: transparent;
  transition: transform var(--transition), box-shadow var(--transition), background-position .6s ease;
}
.card-oficina::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(13,13,13,.72) 0%, rgba(13,13,13,.55) 100%);
  transition: background var(--transition);
  z-index: 0;
}
.card-oficina:hover { background-position: center 40%; }
.card-oficina:hover::before { background: linear-gradient(160deg, rgba(13,13,13,.8) 0%, rgba(13,13,13,.65) 100%); }
.card-oficina > * { position: relative; z-index: 1; }
.card-oficina .card-icon {
  background: rgba(255,107,0,.2);
  color: var(--white);
  border: 1px solid rgba(255,107,0,.35);
}
.card-oficina:hover .card-icon { background: var(--orange); border-color: var(--orange); }
.card-oficina .card-title { color: var(--white); }
.card-oficina .card-text  { color: rgba(255,255,255,.75); }

.card-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  color: var(--orange);
  background: var(--orange-pale);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.card-icon svg { width: 36px; height: 36px; }
.card-diferencial:hover .card-icon { background: var(--orange); color: var(--white); transform: scale(1.1); }

.card-title { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.card-text { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

/* =====================================================
   CATEGORIAS
   ===================================================== */
.categorias { background: var(--white); }

.card-categoria {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 28px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.card-categoria::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.card-categoria:hover::before { opacity: 1; }
.card-categoria > * { position: relative; z-index: 1; }
.card-categoria:hover .cat-title,
.card-categoria:hover .cat-text,
.card-categoria:hover .cat-cta { color: var(--white); }

.cat-icon { font-size: 2rem; margin-bottom: 4px; }
.cat-title { font-size: 1rem; font-weight: 700; color: var(--text); transition: color var(--transition); }
.cat-text { font-size: .82rem; color: var(--text-muted); line-height: 1.55; transition: color var(--transition); flex-grow: 1; }
.cat-cta { font-size: .8rem; font-weight: 600; color: var(--orange); margin-top: 8px; transition: color var(--transition); }

.section-cta {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.section-cta p { color: var(--text-muted); font-size: .95rem; }

/* =====================================================
   SOBRE
   ===================================================== */
.sobre { background: var(--dark); }
.sobre .section-tag { background: rgba(255,107,0,.15); }
.sobre .section-title { color: var(--white); }

.sobre-text .section-tag { margin-bottom: 16px; }
.sobre-text .section-title { margin-bottom: 24px; }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.sobre-visual { position: relative; }
.sobre-fachada {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-md);
}

.sobre-badge-group {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  justify-content: center;
}
.sobre-stat {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  flex: 1;
}
.stat-num { display: block; font-size: 1.6rem; font-weight: 900; color: var(--orange); }
.stat-label { display: block; font-size: .75rem; color: rgba(255,255,255,.5); margin-top: 4px; }

.sobre-text p {
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
  font-size: .95rem;
  line-height: 1.75;
}
.sobre-text strong { color: var(--white); }

.sobre-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0 32px;
}
.sobre-feature {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .4s ease, transform .4s ease;
}
.sobre-feature.visible {
  opacity: 1;
  transform: translateX(0);
}
.feature-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: .65rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* =====================================================
   DEPOIMENTOS
   ===================================================== */
.depoimentos { background: var(--off-white); }

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.rating-big {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.stars-row { color: #f59e0b; letter-spacing: 2px; font-size: 1.1rem; }
.star { color: #d1d5db; }
.star.filled { color: #f59e0b; }
.rating-count { font-size: .875rem; color: var(--text-muted); }

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

.card-testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-name { font-size: .9rem; font-weight: 600; color: var(--text); display: block; margin-bottom: 2px; }
.testimonial-meta { font-size: .75rem; color: var(--text-muted); }
.testimonial-text { font-size: .875rem; color: var(--text-muted); line-height: 1.65; flex-grow: 1; font-style: italic; }
.testimonial-source { font-size: .75rem; color: var(--gray-light); font-weight: 500; }

.rating-google-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--text);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border-light);
  text-decoration: none;
  transition: box-shadow var(--transition);
}
.rating-google-btn:hover { box-shadow: var(--shadow); }

.testimonials-footer {
  text-align: center;
  margin-top: 48px;
}

/* =====================================================
   CONTATO
   ===================================================== */
.contato { background: var(--white); }

/* Tabs */
.contato-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border-light);
  margin-bottom: 40px;
}
.contato-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.contato-tab svg { width: 16px; height: 16px; flex-shrink: 0; }
.contato-tab:hover { color: var(--text); background: var(--off-white); }
.contato-tab.active { color: var(--orange); border-bottom-color: var(--orange); }

.contato-panel { display: none; }
.contato-panel.active { display: block; }

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}

.contato-info { display: flex; flex-direction: column; gap: 24px; }

.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}
.info-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.info-card h3 { font-size: .875rem; font-weight: 700; color: var(--text); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .08em; }
.info-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }
.info-phone { font-size: 1.2rem; font-weight: 700; color: var(--orange); transition: color var(--transition); }
.info-phone:hover { color: var(--orange-dark); }

.horarios { display: flex; flex-direction: column; gap: 6px; }
.horario-row { display: flex; justify-content: space-between; gap: 16px; font-size: .85rem; }
.horario-dia { color: var(--text-muted); }
.horario-hora { font-weight: 600; color: var(--text); }
.horario-row.closed .horario-hora { color: #ef4444; }

/* Form */
.contato-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-light);
}
.form-title { font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-group label span { color: var(--orange); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  font-size: .9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,.12);
}
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }
.form-error { display: block; font-size: .75rem; color: #ef4444; margin-top: 4px; min-height: 18px; }
.form-note { font-size: .75rem; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* Mapa — curtain reveal */
.mapa-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
  position: relative;
}
.mapa-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange);
  transform: scaleY(1);
  transform-origin: top;
  transition: transform .8s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
  z-index: 2;
}
.mapa-wrap.revealed::after {
  transform: scaleY(0);
  transform-origin: bottom;
}

/* Info icon pop */
@keyframes icon-pop {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.25); opacity: 1; }
  100% { transform: scale(1); }
}
.info-card.popped .info-icon {
  animation: icon-pop .5s cubic-bezier(.34,1.56,.64,1) forwards;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background: var(--dark); padding: 72px 0 0; }

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

.footer-logo { margin-bottom: 16px; }
.footer-desc { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 16px; max-width: 300px; }
.footer-phone { font-size: 1rem; font-weight: 700; color: var(--orange); transition: color var(--transition); }
.footer-phone:hover { color: var(--orange-light); }

.footer-links-col h4,
.footer-contact-col h4 {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links-col a:hover { color: var(--orange); }

.footer-contact-col address {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  margin-bottom: 16px;
}
.footer-hours p { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.75; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.3); }
.footer-rating { color: rgba(255,255,255,.45); }
.footer-cnpj { font-size: .7rem; color: rgba(255,255,255,.25); text-align: center; width: 100%; }

/* =====================================================
   WHATSAPP FLOAT
   ===================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,.4);
  z-index: 999;
  transition: all var(--transition);
  animation: floatPulse 2.5s ease-in-out infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; color: var(--white); }
.whatsapp-float:hover { transform: scale(1.12) translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,.5); animation: none; }

.whatsapp-float-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
  border-right: none;
}
.whatsapp-float:hover .whatsapp-float-tooltip { opacity: 1; }

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,.4); }
  50% { box-shadow: 0 8px 48px rgba(37,211,102,.6); transform: scale(1.04); }
}

/* =====================================================
   BACK TO TOP
   ===================================================== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 44px; height: 44px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--transition);
  box-shadow: var(--shadow-orange);
}
.back-to-top:not([hidden]) { opacity: 1; transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top:hover { background: var(--orange-dark); transform: translateY(-3px); }
