﻿/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ===== VARIABLES ===== */
:root {
  --bg: #0f0f0f;
  --bg2: #1a1a1a;
  --bg3: #202020;
  --card: #181818;
  --card-border: rgba(249,115,22,0.22);
  --primary: #f97316;
  --primary-dark: #ea580c;
  --accent: #fb923c;
  --primary-glow: rgba(249,115,22,0.2);
  --orange: #f97316;
  --orange-light: #fb923c;
  --orange-glow: rgba(249,115,22,0.26);
  --wa: #25D366;
  --wa-dark: #128C7E;
  --text: #ffffff;
  --text2: #d4d4d4;
  --text3: #a3a3a3;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 6px 24px rgba(0,0,0,0.42);
  --shadow-lg: 0 10px 48px rgba(0,0,0,0.55);
  --transition: 0.2s ease;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 96px 0;
}
.section-dark {
  background: var(--bg2);
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text2);
  max-width: 620px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.32);
  color: var(--orange-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-cta {
  text-align: center;
  margin-top: 56px;
}

/* ===== BUTTONS ===== */
.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transform: translateX(-120%);
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.22) 50%, transparent 100%);
  transition: opacity 0.3s ease, transform 0.6s ease;
}
.btn svg {
  transition: transform 0.25s ease;
}
.btn:hover svg {
  transform: translateX(3px);
}
.btn:hover::before {
  opacity: 1;
  transform: translateX(120%);
}
.btn:active {
  transform: translateY(1px) scale(0.99);
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.35);
}
.btn-sm { padding: 10px 18px; font-size: 0.875rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-xl { padding: 18px 40px; font-size: 1.125rem; }

.btn-whatsapp {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 8px 30px rgba(249,115,22,0.26), 0 0 0 1px rgba(249,115,22,0.2) inset;
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(249,115,22,0.35), 0 0 24px rgba(249,115,22,0.28);
}
.hero .btn-whatsapp.btn-lg,
.cta-final .btn-whatsapp.btn-xl {
  animation: wa-cta-glow 3.4s ease-in-out infinite;
}
@keyframes wa-cta-glow {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(249,115,22,0.26), 0 0 0 1px rgba(249,115,22,0.2) inset;
  }
  50% {
    box-shadow: 0 12px 40px rgba(249,115,22,0.4), 0 0 26px rgba(249,115,22,0.24);
  }
}

.btn-outline {
  background: linear-gradient(135deg, rgba(249,115,22,0.06), transparent);
  color: var(--text);
  border: 1.5px solid var(--card-border);
}
.btn-outline:hover {
  border-color: rgba(249,115,22,0.6);
  color: var(--orange-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(249,115,22,0.16);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
}
.header.scrolled {
  background: rgba(15,15,15,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-image {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(249,115,22,0.2);
  border: 1px solid rgba(249,115,22,0.22);
}
.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo-text span { color: var(--accent); }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  position: relative;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text2);
  border-radius: 8px;
  transition: color var(--transition), background-color var(--transition);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transition: transform 0.28s ease;
}
.nav-link:hover {
  color: var(--text);
  background: rgba(249,115,22,0.08);
}
.nav-link:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.social-icons-header {
  display: flex;
  gap: 8px;
}
.social-icon-sm {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--text2);
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  border: 1px solid var(--card-border);
}
.social-icon-sm:hover {
  color: var(--orange-light);
  border-color: rgba(249,115,22,0.52);
  background: rgba(249,115,22,0.12);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 18px rgba(249,115,22,0.2);
}
.social-icon-sm:focus-visible,
.cta-social-icon:focus-visible,
.footer-social:focus-visible,
.floating-wa:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.36);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--bg);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.hero::before {
  width: 560px;
  height: 560px;
  top: -180px;
  left: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.16) 0%, transparent 70%);
  filter: blur(6px);
  animation: glow-drift 14s ease-in-out infinite;
}
.hero::after {
  inset: 0;
  background: repeating-linear-gradient(
    105deg,
    transparent 0 46px,
    rgba(249,115,22,0.06) 46px 48px
  );
  opacity: 0.22;
  animation: tech-sweep 18s linear infinite;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 80%);
  animation: grid-drift 20s linear infinite;
}
.hero-bg-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(251,146,60,0.3) 1px, transparent 1.5px);
  background-size: 38px 38px;
  opacity: 0.4;
  animation: points-drift 16s linear infinite;
}
.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(249,115,22,0.18) 0%, transparent 65%);
  pointer-events: none;
  animation: glow-pulse 6s ease-in-out infinite;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.28);
  color: var(--orange-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--wa);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--orange), #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text2);
  margin-bottom: 12px;
  line-height: 1.7;
}
.hero-support {
  font-size: 0.9rem;
  color: var(--text3);
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-seals {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.seal {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text2);
  font-weight: 500;
  opacity: 0;
  transform: translateY(16px);
  animation: hero-rise 0.65s ease forwards;
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-box {
  position: relative;
  width: 560px;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-placeholder {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 82% 12%, rgba(249,115,22,0.2), transparent 42%),
    linear-gradient(145deg, #111111 0%, #161616 62%, #1b1b1b 100%);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 46px rgba(0,0,0,0.42), 0 0 0 1px rgba(249,115,22,0.15) inset;
}
.hero-img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(15,15,15,0.28) 0%, rgba(15,15,15,0.14) 54%, rgba(249,115,22,0.1) 100%),
    radial-gradient(circle at 18% 80%, rgba(0,0,0,0.16), transparent 54%);
}
.hero-img-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(249,115,22,0.16),
    inset 0 -56px 96px rgba(0,0,0,0.24);
}
.hero-monitor-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: normal;
  filter: brightness(0.96) contrast(1.08) saturate(1.06);
  transform: scale(1.01);
}
.floating-card {
  position: absolute;
  background: rgba(24,24,24,0.92);
  border: 1px solid rgba(249,115,22,0.2);
  backdrop-filter: blur(16px);
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4), 0 0 0 1px rgba(249,115,22,0.14) inset;
  animation: float 3s ease-in-out infinite;
}
.fc1 { top: 10%; left: -5%; animation-delay: 0s; }
.fc2 { top: 30%; right: -8%; animation-delay: 0.8s; }
.fc3 { bottom: 25%; left: -8%; animation-delay: 1.6s; }
.fc4 { bottom: 8%; right: 0; animation-delay: 2.4s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fc-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.fc-dot.red { background: #EF4444; }
.fc-dot.yellow { background: #F59E0B; }
.fc-dot.orange { background: var(--accent); }
.fc-dot.green { background: var(--wa); }

.hero-content > .hero-badge {
  opacity: 0;
  transform: translateY(20px);
  animation: hero-rise 0.6s ease forwards 0.05s;
}
.hero-content > .hero-title {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-rise 0.7s ease forwards 0.15s;
}
.hero-content > .hero-subtitle {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-rise 0.7s ease forwards 0.3s;
}
.hero-content > .hero-support {
  opacity: 0;
  transform: translateY(20px);
  animation: hero-rise 0.7s ease forwards 0.42s;
}
.hero-content > .hero-ctas {
  opacity: 0;
  transform: translateY(18px);
  animation: hero-rise 0.72s ease forwards 0.54s;
}
.hero-content > .hero-seals .seal:nth-child(1) { animation-delay: 0.68s; }
.hero-content > .hero-seals .seal:nth-child(2) { animation-delay: 0.76s; }
.hero-content > .hero-seals .seal:nth-child(3) { animation-delay: 0.84s; }
.hero-content > .hero-seals .seal:nth-child(4) { animation-delay: 0.92s; }
.hero-visual {
  opacity: 0;
  transform: translateY(22px) scale(0.97);
  animation: hero-rise-visual 0.9s ease forwards 0.42s;
}

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-rise-visual {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes grid-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 120px, 120px 0; }
}
@keyframes points-drift {
  from { background-position: 0 0; }
  to { background-position: 76px 38px; }
}
@keyframes glow-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(32px, 18px); }
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.08); }
}
@keyframes tech-sweep {
  from { transform: translateX(-4%); }
  to { transform: translateX(4%); }
}

/* ===== PROBLEMS ===== */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.problem-card {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.problem-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(249,115,22,0.16), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.problem-card > * {
  position: relative;
  z-index: 1;
}
.problem-card:hover {
  border-color: rgba(249,115,22,0.5);
  background: rgba(249,115,22,0.07);
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.42), 0 0 0 1px rgba(249,115,22,0.16) inset;
}
.problem-card:hover::before {
  opacity: 1;
}
.problem-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-glow);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 14px;
  flex-shrink: 0;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.problem-card:hover .problem-icon {
  transform: translateY(-2px) rotate(-5deg);
  border-color: rgba(249,115,22,0.45);
  box-shadow: 0 8px 20px rgba(249,115,22,0.2);
}
.problem-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.problem-card p {
  font-size: 0.82rem;
  color: var(--text2);
  margin-bottom: 14px;
  line-height: 1.5;
}
.card-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--wa);
  transition: all var(--transition);
}
.card-cta:hover { color: #1ebe5d; }

/* ===== ECONOMY ===== */
.economy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.economy-text .section-title { text-align: left; margin-bottom: 20px; }
.economy-text p { color: var(--text2); margin-bottom: 32px; line-height: 1.7; }
.economy-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.econ-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--transition);
}
.econ-card:hover { border-color: rgba(249,115,22,0.3); transform: translateY(-2px); }
.econ-icon { font-size: 1.75rem; margin-bottom: 10px; }
.econ-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.econ-card p { font-size: 0.82rem; color: var(--text2); line-height: 1.5; }

/* ===== ABOUT ===== */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.about-stat-box {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about-stat { text-align: center; }
.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.85rem; color: var(--text2); font-weight: 500; }
.about-content .section-title { text-align: left; margin-bottom: 20px; }
.about-content p { color: var(--text2); line-height: 1.7; margin-bottom: 16px; }
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.about-tag {
  background: var(--card);
  border: 1px solid var(--card-border);
  color: var(--text2);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 100px;
}

/* ===== SERVICES ===== */
.services-section {
  padding: 78px 0;
}
.services-section .section-header {
  margin-bottom: 40px;
}
.services-section .section-subtitle {
  max-width: 820px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(28,28,28,0.95), rgba(22,22,22,0.96));
  border: 1px solid rgba(249,115,22,0.18);
  border-radius: 22px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(249,115,22,0.11), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover {
  border-color: rgba(249,115,22,0.38);
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.3), 0 0 0 1px rgba(249,115,22,0.1) inset;
}
.service-card:hover::before {
  opacity: 1;
}
.service-card > * {
  position: relative;
  z-index: 1;
}
.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(249,115,22,0.14);
  border: 1px solid rgba(249,115,22,0.22);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.service-card:hover .service-icon {
  transform: translateY(-1px);
  border-color: rgba(249,115,22,0.38);
  box-shadow: 0 6px 14px rgba(249,115,22,0.14);
}
.service-card h3 {
  font-size: clamp(1.2rem, 1.45vw, 1.42rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.97rem;
  color: var(--text2);
  margin-bottom: 20px;
  line-height: 1.62;
}
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--orange-light);
  transition: color 0.22s ease, text-shadow 0.22s ease;
}
.service-cta:hover {
  color: #FDBA74;
  text-shadow: 0 0 10px rgba(249,115,22,0.18);
}

.services-grid-groups {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-group-card {
  display: flex;
  flex-direction: column;
  min-height: 338px;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  flex-grow: 1;
}
.service-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text2);
  font-size: 0.95rem;
  line-height: 1.5;
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(249,115,22,0.92);
  box-shadow: 0 0 8px rgba(249,115,22,0.34);
}
.services-extra {
  margin-top: 18px;
  background: linear-gradient(140deg, rgba(249,115,22,0.09), rgba(20,20,20,0.98));
  border: 1px solid rgba(249,115,22,0.24);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.services-extra h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  margin-bottom: 10px;
}
.services-extra p {
  max-width: 760px;
  margin: 0 auto 16px;
  color: var(--text2);
  font-size: 0.95rem;
  line-height: 1.62;
}
.services-extra-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 18px;
}
.services-extra-tags span {
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(249,115,22,0.24);
  background: rgba(18,18,18,0.75);
  color: var(--text2);
  font-size: 0.84rem;
  line-height: 1;
}
.services-extra .btn {
  min-height: 52px;
}

@media (max-width: 1080px) {
  .services-grid-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-group-card {
    min-height: 0;
  }
  .service-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .services-grid-groups {
    grid-template-columns: 1fr;
  }
  .services-section {
    padding: 62px 0;
  }
  .services-section .section-header {
    margin-bottom: 28px;
  }
  .service-card {
    padding: 24px;
    border-radius: 20px;
  }
  .service-card p {
    font-size: 0.93rem;
    margin-bottom: 16px;
  }
  .service-list li {
    font-size: 0.92rem;
  }
  .services-extra {
    padding: 20px 16px;
  }
  .services-extra-tags {
    justify-content: flex-start;
    gap: 8px;
  }
}

/* ===== DIFFERENTIALS ===== */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}
.diff-card {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.diff-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(249,115,22,0.12), transparent 46%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.diff-card:hover {
  border-color: rgba(249,115,22,0.48);
  transform: translateY(-4px);
  box-shadow: 0 12px 34px rgba(0,0,0,0.36);
}
.diff-card:hover::before { opacity: 1; }
.diff-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  transition: transform 0.28s ease;
}
.diff-card:hover .diff-icon { transform: translateY(-2px) rotate(-5deg); }
.diff-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.diff-card p { font-size: 0.85rem; color: var(--text2); line-height: 1.5; }
.diff-footer-text {
  text-align: center;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text2);
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== PROCESS ===== */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
}
.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(249,115,22,0.4);
}
.step-content {
  padding-bottom: 8px;
  padding-top: 8px;
}
.step-content h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.step-content p { font-size: 0.875rem; color: var(--text2); }
.process-connector {
  width: 2px;
  height: 28px;
  background: linear-gradient(to bottom, var(--primary), rgba(249,115,22,0.2));
  margin-left: 21px;
}

/* ===== REVIEWS ===== */
.reviews-section {
  background: linear-gradient(160deg, #121212 0%, #171717 64%, rgba(249,115,22,0.08) 100%);
}
.reviews-section .section-header {
  margin-bottom: 48px;
}
.review-trust-row {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.review-trust-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(249,115,22,0.25);
  background: rgba(20,20,20,0.82);
  color: var(--text2);
  font-size: 0.8rem;
  font-weight: 600;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.review-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #191919 0%, #1f1f1f 64%, rgba(249,115,22,0.05) 100%);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.review-quote {
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 900;
  color: var(--orange-light);
  margin-bottom: 4px;
}
.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(140deg, rgba(249,115,22,0.14), transparent 52%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.review-card > * {
  position: relative;
  z-index: 1;
}
.review-card:hover {
  border-color: rgba(249,115,22,0.5);
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.36);
}
.review-card:hover::before { opacity: 1; }
.review-stars {
  color: #F59E0B;
  font-size: 0.98rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-text {
  font-size: 0.93rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 18px;
  flex-grow: 1;
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}
.review-name {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text);
}
.review-source {
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text3);
  font-weight: 600;
}
.review-link {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange-light);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
.review-link span {
  transition: transform 0.25s ease;
}
.review-link:hover {
  color: #FDBA74;
  text-shadow: 0 0 12px rgba(249,115,22,0.2);
}
.review-link:hover span {
  transform: translateX(3px);
}
.review-link:focus-visible {
  outline: none;
  border-radius: 8px;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.35);
}
.reviews-cta {
  margin-top: 42px;
  text-align: center;
  background: linear-gradient(145deg, rgba(249,115,22,0.12), rgba(20,20,20,0.96));
  border: 1px solid rgba(249,115,22,0.28);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
}
.reviews-cta-title {
  font-size: clamp(1.35rem, 2.8vw, 1.8rem);
  line-height: 1.25;
  margin-bottom: 10px;
}
.reviews-cta-text {
  color: var(--text2);
  margin-bottom: 22px;
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== BUSINESS ===== */
.business-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.business-content .section-title { text-align: left; font-size: clamp(1.5rem,3vw,2.25rem); }
.business-content .section-subtitle { text-align: left; margin: 0 0 16px; }
.business-content p { color: var(--text2); margin-bottom: 32px; line-height: 1.7; }
.business-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.biz-card {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 18px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.biz-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249,115,22,0.12), transparent 52%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.biz-card:hover {
  border-color: rgba(249,115,22,0.45);
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.34);
}
.biz-card:hover::before { opacity: 1; }
.biz-card span {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 8px;
  transition: transform 0.25s ease;
}
.biz-card:hover span { transform: translateY(-2px) rotate(-4deg); }
.biz-card h5 { font-size: 0.85rem; font-weight: 600; color: var(--text); }

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  position: relative;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249,115,22,0.09), transparent 56%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.faq-item:hover,
.faq-item.open {
  border-color: rgba(249,115,22,0.45);
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
}
.faq-item:hover::before,
.faq-item.open::before { opacity: 1; }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color 0.25s ease;
}
.faq-question:hover { color: var(--orange-light); }
.faq-arrow {
  flex-shrink: 0;
  color: var(--text2);
  transition: transform 0.3s ease, color 0.25s ease;
}
.faq-item.open .faq-arrow {
  color: var(--orange-light);
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease;
}
.faq-answer.open {
  max-height: 260px;
  opacity: 1;
  transform: translateY(0);
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.7;
}

/* ===== LOCATION ===== */
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--card-border);
}
.contact-item:first-child { padding-top: 0; }
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-glow);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.contact-item p { font-size: 0.875rem; color: var(--text2); line-height: 1.6; }
.contact-item a { color: var(--text2); transition: color var(--transition); }
.contact-item a:hover { color: var(--wa); }
.contact-socials { display: flex; gap: 12px; margin-top: 8px; }
.social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text2);
  transition: color 0.25s ease, transform 0.25s ease, text-shadow 0.25s ease;
}
.social-link-wa { color: var(--wa); }
.social-link:hover {
  color: var(--orange-light);
  transform: translateY(-1px);
  text-shadow: 0 0 18px rgba(249,115,22,0.22);
}
.social-link-wa:hover {
  color: var(--wa);
  text-shadow: 0 0 18px rgba(37,211,102,0.26);
}
.social-link:focus-visible {
  outline: none;
  color: var(--orange-light);
}
.location-btns { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.map-container {
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
}
.map-container iframe { width: 100%; height: 100%; }

/* ===== CTA FINAL ===== */
.cta-final {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--bg);
}
.cta-final-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(249,115,22,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.cta-final-inner {
  position: relative;
  text-align: center;
}
.cta-final-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.cta-final-sub {
  font-size: 1.1rem;
  color: var(--text2);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-final-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text3);
}
.cta-final-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.cta-social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  color: var(--text2);
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.cta-social-icon:hover {
  color: var(--orange-light);
  border-color: rgba(249,115,22,0.5);
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 10px 24px rgba(249,115,22,0.2);
}
.cta-social-wa { border-color: rgba(37,211,102,0.3); color: var(--wa); }
.cta-social-wa:hover {
  background: rgba(37,211,102,0.1);
  border-color: var(--wa);
  color: var(--wa);
  box-shadow: 0 10px 24px rgba(37,211,102,0.24);
}

/* ===== FOOTER ===== */
.footer {
  background: #0f0f0f;
  border-top: 1px solid var(--card-border);
  padding-top: 72px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-desc {
  font-size: 0.875rem;
  color: var(--text2);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer-social {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--card-border);
  color: var(--text2);
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.footer-social:hover {
  color: var(--orange-light);
  border-color: rgba(249,115,22,0.52);
  background: rgba(249,115,22,0.12);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 18px rgba(249,115,22,0.18);
}
.footer-social-wa { border-color: rgba(37,211,102,0.25); color: var(--wa); }
.footer-social-wa:hover {
  background: rgba(37,211,102,0.1);
  border-color: var(--wa);
  color: var(--wa);
  box-shadow: 0 8px 18px rgba(37,211,102,0.24);
}
.footer-col h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a, .footer-col li {
  font-size: 0.875rem;
  color: var(--text2);
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text3);
  text-align: center;
}

/* ===== FLOATING WHATSAPP ===== */
.floating-wa {
  position: fixed;
  bottom: calc(30px + env(safe-area-inset-bottom, 0px));
  right: calc(30px + env(safe-area-inset-right, 0px));
  z-index: 200;
  width: 58px;
  height: 58px;
  background: var(--wa);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 32px rgba(37,211,102,0.36), 0 0 0 1px rgba(249,115,22,0.18) inset;
  transform: translateY(24px);
  opacity: 0;
  animation: floating-wa-enter 0.7s ease forwards 0.8s;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.floating-wa:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 40px rgba(37,211,102,0.42), 0 0 22px rgba(249,115,22,0.22);
}
.floating-wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: wa-pulse 2.5s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes floating-wa-enter {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.floating-wa::before {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(20,20,20,0.94);
  border: 1px solid rgba(249,115,22,0.35);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.floating-wa:hover::before,
.floating-wa:focus-visible::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up,
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.fade-up.visible,
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: rgba(15,15,15,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 40px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
    border-left: 1px solid var(--card-border);
  }
  .nav.open { transform: translateX(0); }
  .nav-link { font-size: 1rem; padding: 12px 0; width: 100%; border-bottom: 1px solid var(--card-border); border-radius: 0; }
  .nav-link::after { left: 0; right: 0; bottom: -1px; }
  .nav-link:hover { background: none; color: var(--orange-light); }
  .hamburger { display: flex; }
  .social-icons-header { display: none; }

  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; width: 100%; }

  .header-actions .btn-sm {
    width: 42px;
    height: 42px;
    padding: 0;
    justify-content: center;
    border-radius: 10px;
    font-size: 0;
  }
  .header-actions .btn-sm svg { width: 20px; height: 20px; }
  .logo-image { width: 38px; height: 38px; }

  .economy-inner { grid-template-columns: 1fr; gap: 40px; }
  .economy-cards { grid-template-columns: 1fr 1fr; }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-stat-box { flex-direction: row; justify-content: space-around; padding: 28px 20px; }

  .business-inner { grid-template-columns: 1fr; gap: 40px; }

  .location-inner { grid-template-columns: 1fr; gap: 32px; }
  .map-container { height: 300px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .section { padding: 64px 0; }
  .cta-final { padding: 80px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .problems-grid { grid-template-columns: 1fr; }
  .economy-cards { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .business-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .about-stat-box { flex-direction: column; }
  .hero-badge { font-size: 0.72rem; }
  .hero-seals { gap: 8px; }
  .seal { font-size: 0.75rem; }
  .floating-wa {
    right: calc(18px + env(safe-area-inset-right, 0px));
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    width: 54px;
    height: 54px;
  }
  .location-btns { flex-direction: column; }
  .location-btns .btn { justify-content: center; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 1.75rem; }
  .section-title { font-size: 1.45rem; }
  .floating-wa::before { display: none; }
}

/* ===== NAV OVERLAY ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.nav-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .floating-wa,
  .hero-content > .hero-badge,
  .hero-content > .hero-title,
  .hero-content > .hero-subtitle,
  .hero-content > .hero-support,
  .hero-content > .hero-ctas,
  .hero-content > .hero-seals .seal,
  .hero-visual {
    opacity: 1 !important;
    transform: none !important;
  }
  .floating-wa-pulse,
  .btn-whatsapp.btn-lg,
  .btn-whatsapp.btn-xl {
    animation: none !important;
  }
}


