/* ================================================
   DESENTUPIDORA NAKAMURA — style.css
   Premium · Dark · Emergency · Professional
   ================================================ */

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

/* ------------------------------------------------
   2. CSS VARIABLES
   ------------------------------------------------ */
:root {
  /* Colors */
  --bg:           #080c14;
  --bg-2:         #0d1220;
  --bg-3:         #111827;
  --surface:      rgba(255,255,255,0.04);
  --surface-hover:rgba(255,255,255,0.07);
  --border:       rgba(255,255,255,0.08);

  --navy:         #0a1628;
  --blue:         #1a56db;
  --blue-light:   #3b82f6;
  --red:          #c0392b;
  --red-dark:     #8b0000;
  --red-glow:     rgba(192,57,43,0.35);
  --green-wa:     #25d366;
  --green-wa-dark:#128C7E;
  --green-wa-glow:rgba(37,211,102,0.3);

  --text:         #e8ecf4;
  --text-muted:   #8899b4;
  --text-dim:     #5a6a84;
  --accent:       #c0392b;
  --accent-alt:   #e74c3c;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-xxl:6rem;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-red: 0 6px 30px rgba(192,57,43,0.4);
  --shadow-green: 0 6px 30px rgba(37,211,102,0.35);
  --shadow-blue: 0 6px 30px rgba(26,86,219,0.35);

  /* Transitions */
  --t-fast: 0.18s ease;
  --t-med:  0.35s ease;
  --t-slow: 0.6s ease;
}

/* ------------------------------------------------
   3. UTILITY
   ------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.section-header h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.section-header p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.25);
  padding: 0.3rem 0.85rem;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
}
.tag-red { color: var(--accent-alt); background: rgba(192,57,43,0.12); border-color: rgba(192,57,43,0.3); }

.text-accent   { color: var(--accent-alt); }
.text-highlight{ color: #fff; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ------------------------------------------------
   4. BUTTONS
   ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.7rem;
  border-radius: var(--r-md);
  font-size: 1rem;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-whatsapp {
  background: var(--green-wa);
  color: #fff;
  box-shadow: var(--shadow-green);
}
.btn-whatsapp:hover { background: #20bf5c; box-shadow: 0 10px 40px rgba(37,211,102,0.5); }

.btn-phone {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-phone:hover { border-color: var(--blue-light); background: rgba(59,130,246,0.1); box-shadow: var(--shadow-blue); }

.btn-xl { padding: 1.1rem 2.2rem; font-size: 1.1rem; border-radius: var(--r-lg); }

/* Pulse animation */
@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
}
.btn-pulse { animation: pulse-green 2.4s infinite; }

/* ------------------------------------------------
   5. LOADER
   ------------------------------------------------ */
#loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-torii svg {
  width: 72px; height: 56px;
  animation: torii-appear 0.8s ease forwards;
}
@keyframes torii-appear {
  from { opacity:0; transform: scale(0.7) translateY(10px); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}
.loader-text {
  margin-top: 1rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.dots { display: inline-block; animation: dots 1.2s steps(3,end) infinite; overflow: hidden; width: 1.8em; }
@keyframes dots { 0%{width:0.3em} 33%{width:0.9em} 66%{width:1.5em} 100%{width:1.8em} }

/* ------------------------------------------------
   6. NAVBAR
   ------------------------------------------------ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.85rem 0;
  background: rgba(8,12,20,0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--t-med), box-shadow var(--t-med);
}
#navbar.scrolled { background: rgba(8,12,20,0.97); box-shadow: 0 4px 24px rgba(0,0,0,0.5); }

.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none;
}
.logo-torii svg { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-family: 'Rajdhani', sans-serif; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; color: var(--text-muted); }
.logo-name { font-family: 'Rajdhani', sans-serif; font-size: 1.2rem; font-weight: 700; color: #fff; letter-spacing: 0.02em; }

.nav-ctas { display: flex; align-items: center; gap: 0.75rem; }
.nav-phone, .nav-whatsapp {
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0.5rem 1rem;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  font-weight: 700;
  transition: all var(--t-fast);
}
.nav-phone { border: 1px solid var(--border); color: var(--text); }
.nav-phone:hover { border-color: var(--blue-light); color: var(--blue-light); }
.nav-whatsapp { background: var(--green-wa); color: #fff; }
.nav-whatsapp:hover { background: #20bf5c; box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
.nav-phone span, .nav-whatsapp span { display: none; }
@media (min-width: 540px) { .nav-phone span, .nav-whatsapp span { display: inline; } }

/* ------------------------------------------------
   7. HERO
   ------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
}

/* Background */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #080c14 0%, #0d1520 40%, #0a0e18 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(80px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px; height: 600px; top: -200px; right: -200px;
  background: radial-gradient(circle, rgba(192,57,43,0.2) 0%, transparent 70%);
}
.hero-glow-2 {
  width: 500px; height: 500px; bottom: -150px; left: -100px;
  background: radial-gradient(circle, rgba(26,86,219,0.18) 0%, transparent 70%);
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 740px;
}

/* Badges */
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--r-full);
  font-size: 0.78rem; font-weight: 700;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
}
.badge i { font-size: 0.7rem; color: var(--blue-light); }
.badge-green { border-color: rgba(37,211,102,0.3); }
.badge-green i { color: var(--green-wa); }

@keyframes badge-ping {
  0%,100% { opacity:1; }
  50%      { opacity:0.6; }
}
.badge-pulse { animation: badge-ping 1.8s ease-in-out infinite; }

/* Headline */
.hero-headline {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.br-md { display: none; }
.br-sm { display: inline; }
@media (min-width: 540px) { .br-md { display: inline; } .br-sm { display: none; } }

/* Sub */
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-sub strong { color: var(--text); }

/* CTAs */
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }

/* Trust row */
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 600; color: var(--text-muted);
}
.trust-item i { color: var(--blue-light); }

/* Decorative pipe */
.hero-deco {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  opacity: 0.06;
  pointer-events: none;
}
.pipe-visual { position: relative; width: 300px; height: 300px; }
.pipe-segment { position: absolute; background: var(--blue-light); border-radius: 4px; }
.pipe-h  { width: 180px; height: 14px; top: 100px; left: 0; }
.pipe-v  { width: 14px; height: 200px; top: 50px; left: 166px; }
.pipe-h2 { width: 120px; height: 14px; top: 235px; left: 0; }
@keyframes flow { from{transform:scaleX(0);transform-origin:left} to{transform:scaleX(1);transform-origin:left} }

/* ------------------------------------------------
   8. URGENCY STRIP
   ------------------------------------------------ */
.urgency-strip {
  background: linear-gradient(90deg, #7f0d0d, #c0392b, #7f0d0d);
  padding: 0.75rem 0;
  overflow: hidden;
}
.urgency-inner {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 0.75rem; justify-content: center; text-align: center;
}
.urgency-inner i { font-size: 1.1rem; animation: badge-ping 1.5s infinite; }
.urgency-inner span { font-size: 0.9rem; color: #fff; }
.urgency-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 1rem;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--r-full);
  font-size: 0.82rem; font-weight: 700; color: #fff;
  transition: all var(--t-fast);
}
.urgency-cta:hover { background: rgba(255,255,255,0.3); }

/* ------------------------------------------------
   9. STATS
   ------------------------------------------------ */
.stats-section {
  background: var(--bg-2);
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat-card {
  background: var(--bg-2);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background var(--t-fast);
}
.stat-card:hover { background: var(--bg-3); }
.stat-number {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--accent-alt);
  line-height: 1;
}
.stat-suffix {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-alt);
  vertical-align: top;
  margin-top: 0.3rem;
}
.stat-card p { color: var(--text-muted); font-size: 0.88rem; margin-top: 0.4rem; font-weight: 600; }
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }

/* ------------------------------------------------
   10. SERVICES
   ------------------------------------------------ */
.services-section {
  padding: var(--space-xxl) 0;
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 540px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 960px) { .services-grid { grid-template-columns: repeat(3,1fr); } }

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med), background var(--t-med);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.02));
  opacity: 0; transition: opacity var(--t-med);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(255,255,255,0.16); background: var(--surface-hover); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px;
  background: rgba(192,57,43,0.12);
  border: 1px solid rgba(192,57,43,0.25);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--accent-alt);
  margin-bottom: 1.25rem;
  transition: background var(--t-fast), box-shadow var(--t-fast);
}
.service-card:hover .service-icon { background: rgba(192,57,43,0.2); box-shadow: 0 4px 20px rgba(192,57,43,0.3); }

.service-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem; font-weight: 700;
  color: #fff; margin-bottom: 0.6rem;
}
.service-card p { color: var(--text-muted); font-size: 0.9rem; flex: 1; margin-bottom: 1.5rem; }

.service-cta {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.9rem; font-weight: 700; color: var(--blue-light);
  transition: gap var(--t-fast), color var(--t-fast);
  margin-top: auto;
}
.service-cta:hover { gap: 0.7rem; color: #fff; }
.service-cta--hot { color: var(--green-wa); }
.service-cta--hot:hover { color: #20bf5c; }

.service-card--emergency {
  background: linear-gradient(135deg, rgba(192,57,43,0.12), rgba(192,57,43,0.05));
  border-color: rgba(192,57,43,0.25);
}
.service-card--emergency .service-icon { background: rgba(192,57,43,0.2); }

/* ------------------------------------------------
   11. HOW IT WORKS
   ------------------------------------------------ */
.how-section {
  padding: var(--space-xxl) 0;
  background: var(--bg-2);
}
.steps-grid {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
@media (min-width: 768px) {
  .steps-grid {
    flex-direction: row;
    align-items: flex-start;
  }
}

.step {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3.5rem; font-weight: 700;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  position: absolute; top: 1rem; right: 1.25rem;
  pointer-events: none; user-select: none;
}
.step-icon {
  width: 52px; height: 52px;
  background: rgba(26,86,219,0.12);
  border: 1px solid rgba(26,86,219,0.25);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--blue-light);
  margin-bottom: 1.25rem;
}
.step h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem; font-weight: 700; color: #fff;
  margin-bottom: 0.6rem;
}
.step p { color: var(--text-muted); font-size: 0.9rem; }

.step-connector {
  width: 2px; height: 40px; align-self: center;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
  margin: 0.5rem auto;
}
@media (min-width: 768px) {
  .step-connector {
    width: 40px; height: 2px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
    margin: 0; align-self: center; flex-shrink: 0;
  }
}

/* ------------------------------------------------
   12. DIFFERENTIALS
   ------------------------------------------------ */
.differentials-section {
  padding: var(--space-xxl) 0;
  background: var(--bg);
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 768px) { .diff-grid { grid-template-columns: repeat(3,1fr); } }

.diff-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  text-align: center;
  transition: transform var(--t-med), border-color var(--t-med);
}
.diff-item:hover { transform: translateY(-4px); border-color: rgba(26,86,219,0.35); }
.diff-item > i {
  font-size: 1.8rem; color: var(--blue-light);
  margin-bottom: 0.85rem; display: block;
}
.diff-item h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem; font-weight: 700; color: #fff;
  margin-bottom: 0.4rem;
}
.diff-item p { color: var(--text-muted); font-size: 0.85rem; }

/* ------------------------------------------------
   13. EMERGENCY SECTION
   ------------------------------------------------ */
.emergency-section {
  padding: var(--space-xxl) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.emergency-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 840px) { .emergency-inner { flex-direction: row; justify-content: space-between; } }

.emergency-text { max-width: 560px; }
.emergency-text h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700; color: #fff; line-height: 1.2;
  margin-bottom: 1rem;
}
.emergency-text p { color: var(--text-muted); margin-bottom: 1.5rem; }
.emergency-text strong { color: var(--text); }

.emergency-list { margin-bottom: 2rem; }
.emergency-list li {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--text-muted); font-size: 0.95rem;
  padding: 0.4rem 0;
}
.emergency-list li i { color: var(--green-wa); font-size: 0.9rem; }
.emergency-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Animated badge */
.emergency-visual { flex-shrink: 0; }
.emergency-badge-big {
  position: relative;
  width: 180px; height: 180px;
  display: flex; align-items: center; justify-content: center;
}
.eb-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(192,57,43,0.4);
  animation: ring-expand 3s ease-out infinite;
}
.eb-ring-1 { animation-delay: 0s; }
.eb-ring-2 { animation-delay: 1s; }
.eb-ring-3 { animation-delay: 2s; }
@keyframes ring-expand {
  0%   { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}
.eb-core {
  position: relative; z-index: 1;
  width: 110px; height: 110px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(192,57,43,0.5);
}
.eb-core i { font-size: 1.8rem; color: #fff; margin-bottom: 0.2rem; }
.eb-core span { font-family: 'Rajdhani', sans-serif; font-size: 1.2rem; font-weight: 700; color: #fff; }

/* ------------------------------------------------
   14. REVIEWS
   ------------------------------------------------ */
.reviews-section {
  padding: var(--space-xxl) 0;
  background: var(--bg);
}
.global-rating {
  display: flex; align-items: center; gap: 0.5rem;
  justify-content: center; margin-top: 0.75rem;
}
.stars { color: #f59e0b; font-size: 1rem; display: flex; gap: 2px; }
.stars-sm { font-size: 0.75rem; }
.rating-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem; font-weight: 700; color: #fff;
}
.rating-count { color: var(--text-muted); font-size: 0.85rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 540px) { .reviews-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 960px) { .reviews-grid { grid-template-columns: repeat(3,1fr); } }

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex; flex-direction: column;
  gap: 0.75rem;
  transition: transform var(--t-med), border-color var(--t-med);
}
.review-card:hover { transform: translateY(-4px); border-color: rgba(245,158,11,0.25); }

.review-header {
  display: flex; align-items: center; gap: 0.75rem;
}
.reviewer-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--red));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.reviewer-name { display: block; font-weight: 700; color: #fff; font-size: 0.95rem; }
.review-source { margin-left: auto; color: var(--text-dim); font-size: 0.9rem; }
.review-card p { color: var(--text-muted); font-size: 0.9rem; flex: 1; }
.review-date { font-size: 0.78rem; color: var(--text-dim); }

/* ------------------------------------------------
   15. CITIES
   ------------------------------------------------ */
.cities-section {
  padding: var(--space-xxl) 0;
  background: var(--bg-2);
}
.cities-grid {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  justify-content: center;
}
.city-tag {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 0.88rem; font-weight: 600; color: var(--text);
  transition: all var(--t-fast);
}
.city-tag i { color: var(--accent-alt); font-size: 0.75rem; }
.city-tag:hover { background: var(--surface-hover); border-color: rgba(192,57,43,0.35); transform: translateY(-2px); }
.city-tag--more { border-color: rgba(26,86,219,0.3); color: var(--blue-light); }
.city-tag--more i { color: var(--blue-light); }

/* ------------------------------------------------
   16. FAQ
   ------------------------------------------------ */
.faq-section {
  padding: var(--space-xxl) 0;
  background: var(--bg);
}
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast);
}
.faq-item:focus-within { border-color: rgba(26,86,219,0.4); }

.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none; border: none;
  color: #fff; font-size: 1rem; font-weight: 700;
  font-family: 'Nunito', sans-serif;
  cursor: pointer; text-align: left;
  transition: color var(--t-fast);
}
.faq-question i { color: var(--text-dim); font-size: 0.85rem; transition: transform var(--t-med); flex-shrink: 0; }
.faq-question[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-question[aria-expanded="true"] { color: var(--blue-light); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
}
.faq-answer.open { max-height: 200px; padding: 0 1.5rem 1.25rem; }
.faq-answer p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }

/* ------------------------------------------------
   17. CTA FINAL
   ------------------------------------------------ */
.cta-final {
  position: relative;
  padding: var(--space-xxl) 0;
  overflow: hidden;
}
.cta-final-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #070a12 0%, #0d1520 50%, #070a12 100%);
}
.cta-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(192,57,43,0.15) 0%, transparent 65%);
}

.cta-final-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 720px; margin: 0 auto;
}
.cta-icon-big { margin-bottom: 1.5rem; }
.cta-icon-big svg { filter: drop-shadow(0 0 20px rgba(192,57,43,0.4)); }

.cta-final-inner h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700; color: #fff; line-height: 1.25;
  margin-bottom: 1rem;
}
.cta-final-inner > p {
  color: var(--text-muted); margin-bottom: 2.25rem; max-width: 520px; margin-left: auto; margin-right: auto;
}
.cta-final-btns {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; margin-bottom: 1.5rem;
}
.cta-guarantee {
  color: var(--text-dim); font-size: 0.85rem;
  display: flex; align-items: center; gap: 0.4rem;
  justify-content: center;
}
.cta-guarantee i { color: var(--blue-light); }

/* ------------------------------------------------
   18. FOOTER
   ------------------------------------------------ */
.footer {
  background: #050810;
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex; flex-direction: column;
  gap: 1.5rem; align-items: center; text-align: center;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-logo-text {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem; font-weight: 600; color: var(--text);
}
.footer-logo-text strong { color: var(--accent-alt); }
.footer-slogan { display: block; font-size: 0.78rem; color: var(--text-dim); }

.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact a {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 600; color: var(--text-muted);
  transition: color var(--t-fast);
}
.footer-contact a:hover { color: var(--text); }

.footer-bottom { width: 100%; text-align: center; border-top: 1px solid var(--border); padding-top: 1.25rem; }
@media (min-width: 768px) { .footer-bottom { text-align: right; } }
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); }
.footer-dev { margin-top: 0.25rem; }
.footer-dev a {
  color: var(--blue-light);
  font-weight: 600;
  transition: color var(--t-fast);
}
.footer-dev a:hover { color: #fff; }

/* ------------------------------------------------
   19. FLOATING WHATSAPP BUTTON
   ------------------------------------------------ */
.float-whatsapp {
  position: fixed;
  bottom: 90px; right: 20px;
  z-index: 900;
  width: 58px; height: 58px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37,211,102,0.65);
}
.float-tooltip {
  position: absolute; right: 68px;
  background: rgba(10,14,26,0.95);
  border: 1px solid var(--border);
  color: #fff; font-size: 0.8rem; font-weight: 600;
  padding: 0.35rem 0.75rem; border-radius: var(--r-sm);
  white-space: nowrap; pointer-events: none;
  opacity: 0; transform: translateX(6px);
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.float-whatsapp:hover .float-tooltip { opacity: 1; transform: translateX(0); }

@media (max-width: 639px) {
  .float-whatsapp { bottom: 80px; right: 16px; width: 52px; height: 52px; font-size: 1.5rem; }
}

/* ------------------------------------------------
   20. MOBILE CTA BAR
   ------------------------------------------------ */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 800;
  height: 62px;
  border-top: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
@media (max-width: 768px) { .mobile-cta-bar { display: flex; } }

.mobile-cta-btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem; font-weight: 800;
  color: #fff; text-decoration: none;
  transition: filter var(--t-fast);
}
.mobile-cta-btn:hover { filter: brightness(1.1); }
.mobile-cta-btn i { font-size: 1.1rem; }
.mobile-cta-call  { background: var(--blue); }
.mobile-cta-whatsapp { background: var(--green-wa); }

/* ------------------------------------------------
   21. RESPONSIVE HELPERS
   ------------------------------------------------ */
@media (max-width: 480px) {
  .hero-sub { font-size: 0.98rem; }
  .btn { padding: 0.8rem 1.3rem; font-size: 0.92rem; }
  .btn-xl { padding: 0.95rem 1.5rem; font-size: 1rem; }
  .diff-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  body { padding-bottom: 62px; }
}

@media (min-width: 769px) {
  .float-whatsapp { bottom: 30px; }
}

/* ------------------------------------------------
   22. ACCESSIBILITY
   ------------------------------------------------ */
:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 3px;
}

/* ------------------------------------------------
   23. SCROLLBAR
   ------------------------------------------------ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.22); }

/* ------------------------------------------------
   24. SELECTION
   ------------------------------------------------ */
::selection { background: rgba(192,57,43,0.35); color: #fff; }
