/* ========================================
   SOLUTION DESENTUPIDORA — DESIGN SYSTEM
   ======================================== */

/* FONTS & RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* TOKENS */
:root {
  --blue-dark:    #0d1b4b;
  --blue:         #1e3a8a;
  --blue-mid:     #2563eb;
  --blue-light:   #3b82f6;
  --orange:       #f97316;
  --orange-dark:  #ea580c;
  --green-wpp:    #25d366;
  --green-dark:   #16a34a;
  --white:        #ffffff;
  --gray-50:      #f8fafc;
  --gray-100:     #f1f5f9;
  --gray-200:     #e2e8f0;
  --gray-400:     #94a3b8;
  --gray-600:     #475569;
  --gray-800:     #1e293b;
  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.15);
  --transition:   0.25s ease;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-wpp {
  background: var(--green-wpp);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.btn-wpp:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.btn-primary {
  background: var(--blue-mid);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,99,235,0.4);
}
.btn-primary:hover {
  background: var(--blue);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.btn-white-outline {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-xl { padding: 18px 36px; font-size: 1.1rem; border-radius: var(--radius-sm); }
.btn-full { width: 100%; justify-content: center; }

/* PULSE */
@keyframes pulse-shadow {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.15); }
}
.pulse { animation: pulse-shadow 2.5s ease-in-out infinite; }

/* SECTION BASE */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: rgba(37,99,235,0.1);
  color: var(--blue-mid);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-subtitle {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.highlight { color: var(--orange); }

/* ============================
   TOP BAR
   ============================ */
.topbar {
  background: var(--blue-dark);
  padding: 8px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar-left { display: flex; gap: 16px; flex-wrap: wrap; }
.sep { opacity: 0.5; }
.topbar-right { display: flex; gap: 16px; flex-wrap: wrap; }
.topbar-phone {
  color: #fff;
  font-weight: 600;
  transition: color var(--transition);
}
.topbar-phone:hover { color: var(--green-wpp); }

/* ============================
   HEADER
   ============================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-icon { font-size: 1.6rem; line-height: 1; }
.logo-name {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1;
}
.logo-sub {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  line-height: 1;
}
.logo-white .logo-name, .logo-white .logo-sub, .logo-white .logo-icon { color: #fff; }
.logo-white img { filter: brightness(0) invert(1); }

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--blue-mid); background: var(--gray-100); }
.nav-dropdown { position: relative; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  width: 260px;
  padding: 8px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.dropdown-menu a:hover { background: var(--gray-50); color: var(--blue-mid); }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, #1a3a7a 100%);
  padding: 80px 0 0;
  overflow: hidden;
  min-height: 580px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(37,99,235,0.3) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(249,115,22,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green-wpp);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-title {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title .highlight { color: var(--orange); }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  max-width: 520px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.trust-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* HERO FORM */
.hero-form-wrap { padding-bottom: 32px; }
.hero-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.form-tag {
  display: inline-block;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 20px;
}
.form-group { margin-bottom: 14px; }
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--gray-800);
  background: #fff;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--blue-mid); }
.form-group input::placeholder { color: var(--gray-400); }
.form-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 10px;
}

/* WAVE */
.hero-wave {
  position: relative;
  margin-top: 40px;
  height: 80px;
}
.hero-wave svg { position: absolute; bottom: 0; width: 100%; }

/* ============================
   STATS BAR
   ============================ */
.stats-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1;
}
.stat-plus {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
}
.stat-number + .stat-plus { margin-left: 2px; }
.stat-label { font-size: 0.82rem; font-weight: 600; color: var(--gray-600); }
.stat-divider { width: 1px; height: 50px; background: var(--gray-200); }

/* ============================
   EMERGENCY STRIP
   ============================ */
.emergency-strip {
  background: linear-gradient(90deg, #dc2626, #b91c1c);
  padding: 20px 0;
}
.emergency-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.emergency-icon { font-size: 2rem; flex-shrink: 0; }
.emergency-text {
  flex: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.emergency-text strong { font-size: 1.05rem; }
.emergency-text span { font-size: 0.88rem; opacity: 0.9; }
.emergency-strip .btn-wpp {
  flex-shrink: 0;
  background: #fff;
  color: #dc2626;
  box-shadow: none;
}
.emergency-strip .btn-wpp:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* ============================
   SERVICES
   ============================ */
.services { background: #fff; position: relative; }
.services-carousel-wrap { position: relative; }
.services-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0 16px;
}
.services-grid::-webkit-scrollbar { display: none; }
.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  flex: 0 0 calc(25% - 15px);
  scroll-snap-align: start;
  min-width: 250px;
}

/* Carousel Nav */
.services-nav { display: flex; justify-content: center; gap: 12px; margin-top: 24px; }
.services-prev, .services-next {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: #fff;
  color: var(--gray-600);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.services-prev:hover, .services-next:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  color: #fff;
}
.services-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.services-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.services-dot.active { background: var(--blue-mid); transform: scale(1.3); }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: var(--blue-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.service-blue   { background: rgba(37,99,235,0.1); }
.service-orange { background: rgba(249,115,22,0.1); }
.service-teal   { background: rgba(20,184,166,0.1); }
.service-purple { background: rgba(139,92,246,0.1); }
.service-yellow { background: rgba(234,179,8,0.1); }
.service-green  { background: rgba(34,197,94,0.1); }
.service-content { flex: 1; }
.service-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.service-content p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 12px;
}
.service-list { display: flex; flex-direction: column; gap: 4px; }
.service-list li { font-size: 0.8rem; font-weight: 500; color: var(--green-dark); }
.service-cta {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-mid);
  transition: gap var(--transition);
}
.service-card:hover .service-cta { color: var(--orange); }

/* CARD CTA ESPECIAL */
.service-card-cta {
  background: linear-gradient(135deg, var(--green-wpp), var(--green-dark));
  border-color: transparent;
  color: #fff;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.service-card-cta::before { display: none; }
.service-card-cta:hover { transform: translateY(-4px); box-shadow: 0 8px 40px rgba(37,211,102,0.4); border-color: transparent; }
.service-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.service-icon.big { font-size: 2.5rem; }
.service-card-cta h3 { font-size: 1.1rem; font-weight: 800; color: #fff; margin: 0; }
.service-card-cta p { font-size: 0.88rem; color: rgba(255,255,255,0.85); margin: 0; }
.service-card-cta .btn-wpp {
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.4);
  box-shadow: none;
}
.service-card-cta .btn-wpp:hover { background: rgba(255,255,255,0.35); }

/* ============================
   HOW IT WORKS
   ============================ */
.how-works { background: var(--gray-50); }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  margin-bottom: 48px;
}
.step-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--blue-light);
}
.step-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon { font-size: 2rem; margin-bottom: 12px; }
.step-card h3 {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--gray-800);
  margin-bottom: 8px;
}
.step-card p { font-size: 0.85rem; color: var(--gray-600); }
.step-arrow {
  font-size: 1.5rem;
  color: var(--gray-400);
  font-weight: 300;
  flex-shrink: 0;
}
.how-cta { text-align: center; }

/* ============================
   WHY US
   ============================ */
.why-us { background: #fff; }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.why-image-placeholder {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius-lg);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: #fff;
  font-size: 4rem;
}
.why-image-placeholder p { font-size: 1.2rem; font-weight: 700; }
.why-image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
}
.badge-star { font-size: 1.6rem; }
.why-image-badge strong { display: block; font-size: 1.2rem; font-weight: 800; color: var(--gray-800); }
.why-image-badge small { font-size: 0.78rem; color: var(--gray-600); }

.why-content .section-header { text-align: left; margin-bottom: 20px; }
.why-content .section-tag { display: inline-block; }
.why-text { color: var(--gray-600); margin-bottom: 32px; font-size: 0.97rem; }
.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-feature-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(37,99,235,0.05));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.why-feature h4 { font-size: 0.95rem; font-weight: 700; color: var(--gray-800); margin-bottom: 4px; }
.why-feature p { font-size: 0.85rem; color: var(--gray-600); }

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials { background: var(--gray-50); }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-featured {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-color: transparent;
  color: #fff;
}
.testimonial-featured p { color: rgba(255,255,255,0.9); }
.testimonial-featured .testimonial-author strong { color: #fff; }
.testimonial-featured .testimonial-author small { color: rgba(255,255,255,0.7); }
.testimonial-featured .author-avatar {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.stars { font-size: 1.1rem; }
.testimonial-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; font-weight: 700; }
.testimonial-author small { font-size: 0.78rem; color: var(--gray-400); }
.testimonials-cta { text-align: center; }

/* ============================
   AREAS
   ============================ */
.areas { background: #fff; }
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.area-tag {
  padding: 8px 18px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all var(--transition);
}
.area-tag:hover {
  background: var(--blue-mid);
  color: #fff;
  border-color: var(--blue-mid);
}

/* ============================
   CTA FINAL
   ============================ */
.cta-final {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(249,115,22,0.15) 0%, transparent 60%);
}
.cta-final-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.cta-final-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.cta-final-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.cta-final-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.cta-address small { color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.cta-certifications { text-align: center; flex-shrink: 0; }
.cta-certifications h4 { color: rgba(255,255,255,0.7); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.cert-list { display: flex; flex-direction: column; gap: 8px; }
.cert-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.08em;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--gray-800);
  padding: 60px 0 24px;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 0.88rem; margin-top: 16px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.social-link:hover { background: var(--green-wpp); color: #fff; }
.footer-links h4,
.footer-contact h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-links ul,
.footer-contact ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a,
.footer-contact a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--green-wpp); }
.footer-contact small { color: rgba(255,255,255,0.5); font-size: 0.78rem; }
.payment-methods { margin-top: 20px; }
.payment-methods h5 { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.payment-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.payment-badges span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============================
   FLOATING WPP
   ============================ */
.floating-wpp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: var(--green-wpp);
  color: #fff;
  border-radius: 100px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
  animation: float-pulse 3s ease-in-out infinite;
}
.floating-wpp:hover {
  background: var(--green-dark);
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(37,211,102,0.6);
}
@keyframes float-pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 8px 50px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ============================
   SERVICE PAGES — SHARED
   ============================ */
.service-page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.service-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(249,115,22,0.12) 0%, transparent 60%);
}
.service-page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  position: relative;
}
.service-page-breadcrumb a { color: rgba(255,255,255,0.7); }
.service-page-breadcrumb a:hover { color: #fff; }
.service-page-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.service-page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.service-page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.service-page-hero .hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.service-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.service-hero-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-hero-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.service-hero-img-placeholder {
  width: 100%;
  height: 380px;
  background: rgba(255,255,255,0.08);
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 4rem;
}
.service-hero-img-placeholder p {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* Service page content */
.service-page-content { padding: 80px 0; background: #fff; }
.service-content-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.service-main-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.service-main-content p {
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.8;
}
.service-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.service-feature-item .icon { font-size: 1.4rem; flex-shrink: 0; }
.service-feature-item h4 { font-size: 0.9rem; font-weight: 700; color: var(--gray-800); margin-bottom: 4px; }
.service-feature-item p { font-size: 0.82rem; color: var(--gray-600); margin: 0; }
.service-segments { margin-top: 40px; }
.service-segments h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.segment-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.segment-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  transition: all var(--transition);
}
.segment-card:hover { border-color: var(--blue-mid); box-shadow: var(--shadow); }
.segment-card h3 {
  font-weight: 800;
  font-size: 1rem;
  color: var(--gray-800);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.segment-card ul { display: flex; flex-direction: column; gap: 6px; }
.segment-card li { font-size: 0.85rem; color: var(--gray-600); padding-left: 16px; position: relative; }
.segment-card li::before { content: '✓'; position: absolute; left: 0; color: var(--green-dark); font-weight: 700; }

/* SIDEBAR CTA */
.service-sidebar { position: sticky; top: 90px; }
.sidebar-cta-card {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #fff;
  margin-bottom: 20px;
}
.sidebar-cta-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.sidebar-cta-card p { font-size: 0.88rem; color: rgba(255,255,255,0.8); margin-bottom: 20px; }
.sidebar-cta-card .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.sidebar-phones { display: flex; flex-direction: column; gap: 8px; }
.sidebar-phones a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: 10px 14px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.sidebar-phones a:hover { background: rgba(255,255,255,0.2); color: #fff; }
.sidebar-trust {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.sidebar-trust h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-600); margin-bottom: 14px; }
.sidebar-trust-items { display: flex; flex-direction: column; gap: 10px; }
.sidebar-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 500; color: var(--gray-600); }
.sidebar-trust-item::before { content: '✅'; font-size: 0.9rem; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .service-card { flex: 0 0 calc(33.333% - 14px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .step-arrow { display: none; }
  .hero-inner { display: flex; flex-direction: column; text-align: center; gap: 32px; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-badges { justify-content: center; }
  .hero-form-wrap { display: none; }
  .hero-title { font-size: 2.8rem; }
}

@media (max-width: 768px) {
  /* GLOBAL MOBILE OVERFLOW FIX */
  html, body { overflow-x: hidden; width: 100%; max-width: 100vw; }
  .btn { white-space: normal; word-break: break-word; }
  .hero-bg, .hero::before, .hero::after, .cta-final::before { display: none !important; }
  .topbar, .hero, .stats-bar, .emergency-strip, .services,
  .how-works, .why-us, .testimonials, .areas, .cta-final, .footer,
  .service-page-hero, .related-services { overflow-x: clip; }

  /* NAV MOBILE — hide original nav, show hamburger */
  .topbar-left { display: none; }
  .topbar-inner { justify-content: center; }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .nav { display: none !important; }

  /* HERO MOBILE */
  .hero { padding: 40px 0 0; min-height: auto; }
  .hero-inner { display: flex !important; flex-direction: column; text-align: center; gap: 24px; }
  .hero-content { display: flex; flex-direction: column; align-items: center; width: 100%; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { text-align: center; max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-badges { justify-content: center; }
  .hero-ctas { display: flex; flex-direction: column; width: 100%; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; box-sizing: border-box; }
  .hero-form-wrap { display: block; padding: 24px 0 0; width: 100%; }
  .hero-form-card { padding: 24px 16px; }
  .hero-wave { height: 40px; margin-top: 24px; }

  /* STATS MOBILE */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-divider { display: none; }
  .stat-item { align-items: center; text-align: center; }

  /* EMERGENCY MOBILE */
  .emergency-inner { flex-direction: column; text-align: center; align-items: center; }
  .emergency-inner .btn { width: 100%; justify-content: center; }

  /* SERVICES MOBILE — Carousel */
  .service-card { flex: 0 0 calc(50% - 10px); min-width: 220px; text-align: center; align-items: center; }
  .service-icon-wrap { margin: 0 auto; }
  .service-content { text-align: center; }
  .service-list { align-items: center; }
  .services-prev, .services-next { width: 40px; height: 40px; font-size: 1.2rem; }

  /* HOW IT WORKS MOBILE */
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }

  /* WHY US MOBILE */
  .why-inner { grid-template-columns: 1fr; gap: 32px; }
  .why-image-wrap img { height: 280px; }
  .why-content { text-align: center; }
  .why-content .section-header { text-align: center; }
  .why-feature { flex-direction: column; align-items: center; text-align: center; }
  .why-content .btn { width: 100%; justify-content: center; }

  /* TESTIMONIALS MOBILE */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* CTA FINAL MOBILE */
  .cta-final { padding: 56px 0; }
  .cta-final-inner { display: flex !important; flex-direction: column; gap: 32px; text-align: center; }
  .cta-final-content { display: flex; flex-direction: column; align-items: center; }
  .cta-final-content p { max-width: 100%; }
  .cta-final-btns { flex-direction: column; width: 100%; align-items: stretch; }
  .cta-final-btns .btn { width: 100%; justify-content: center; box-sizing: border-box; }
  .cert-list { flex-direction: row; flex-wrap: wrap; justify-content: center; }

  /* FOOTER MOBILE */
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-links { text-align: center; }
  .footer-links ul { align-items: center; }
  .footer-contact { text-align: center; }
  .footer-contact ul { align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-social { justify-content: center; }

  /* FLOATING WPP */
  .floating-wpp-label { display: none; }
  .floating-wpp { padding: 16px; border-radius: 50%; }

  /* SERVICE PAGES MOBILE */
  .service-page-hero { padding: 40px 0; }
  .service-page-hero-inner { display: flex !important; flex-direction: column; text-align: center; gap: 24px; }
  .service-page-hero-content { display: flex; flex-direction: column; align-items: center; width: 100%; }
  .service-page-hero p { max-width: 100%; }
  .service-urgency-bar { font-size: 0.75rem; }
  .service-page-hero h1 { font-size: 1.8rem; }
  .service-page-hero .hero-badges { justify-content: center; }
  .service-hero-ctas { display: flex; flex-direction: column; width: 100%; align-items: stretch; }
  .service-hero-ctas .btn { width: 100%; justify-content: center; box-sizing: border-box; }
  .service-hero-img { display: none; }
  .service-content-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .service-features-grid { grid-template-columns: 1fr; }
  .segment-cards { grid-template-columns: 1fr; }
  .service-page-breadcrumb { justify-content: center; }
  .service-mid-cta { flex-direction: column; text-align: center; align-items: center; }

  /* RELATED SERVICES MOBILE */
  .related-services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .hero-title { font-size: 1.8rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .btn-xl { padding: 16px 24px; font-size: 1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-number { font-size: 2rem; }
  .service-page-hero h1 { font-size: 1.5rem; }
  .trust-badge { font-size: 0.75rem; padding: 5px 10px; }
  .hero-badge { font-size: 0.75rem; }
  .section-title { font-size: 1.6rem; }
  .cta-final-content h2 { font-size: 1.6rem; }
  .service-mid-cta { padding: 20px; }
  .service-mid-cta .mc-text strong { font-size: 1.1rem; }
  .related-services-grid { grid-template-columns: 1fr; }
  .service-card { flex: 0 0 85%; min-width: 260px; }
}

/* ============================
   EXIT-INTENT POPUP
   ============================ */
#exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 50, 0.75);
  backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#exit-popup-overlay.ep-visible { opacity: 1; }

#exit-popup {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px 32px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
  transform: scale(0.85) translateY(24px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  overflow: hidden;
}
#exit-popup::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0d1b4b, #f97316, #25d366);
}
#exit-popup.ep-in {
  transform: scale(1) translateY(0);
  opacity: 1;
}
#exit-popup.ep-out {
  transform: scale(0.9) translateY(16px);
  opacity: 0;
}

#exit-popup-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none; border: none;
  font-size: 1.1rem;
  color: var(--gray-400);
  cursor: pointer;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}
#exit-popup-close:hover { background: var(--gray-100); color: var(--gray-600); }

.ep-urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff3cd;
  color: #92400e;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid #fcd34d;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ep-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  animation: ep-shake 0.8s ease-in-out infinite;
}
@keyframes ep-shake {
  0%, 100% { transform: rotate(0); }
  15% { transform: rotate(-8deg); }
  30% { transform: rotate(8deg); }
  45% { transform: rotate(-5deg); }
  60% { transform: rotate(5deg); }
  75% { transform: rotate(-2deg); }
}

.ep-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gray-800);
  line-height: 1.1;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.ep-title span { color: var(--orange); }

.ep-subtitle {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.ep-subtitle strong { color: var(--gray-800); }

.ep-benefits {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.ep-benefit {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700, #374151);
}

.ep-cta-wpp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: var(--green-wpp);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  margin-bottom: 10px;
  transition: all 0.25s;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  animation: pulse-shadow 2.5s ease-in-out infinite;
}
.ep-cta-wpp:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
}

.ep-cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 24px;
  background: var(--gray-100);
  color: var(--gray-800);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  margin-bottom: 16px;
  transition: all 0.25s;
}
.ep-cta-phone:hover { background: var(--gray-200); }

.ep-dismiss {
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: 0.78rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ep-dismiss:hover { color: var(--gray-600); }

/* MOBILE popup ajuste */
@media (max-width: 480px) {
  #exit-popup { padding: 32px 20px 24px; }
  .ep-title { font-size: 1.8rem; }
  .ep-benefits { gap: 6px; }
  .ep-benefit { font-size: 0.75rem; padding: 4px 10px; }
}

/* ============================
   STICKY MOBILE BOTTOM BAR
   ============================ */
#sticky-mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  display: flex;
  height: 60px;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
#sticky-mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: filter 0.2s;
}
#sticky-phone {
  background: var(--blue-dark);
  color: #fff;
}
#sticky-wpp {
  background: var(--green-wpp);
  color: #fff;
}
#sticky-mobile-bar a:hover { filter: brightness(1.1); }

/* ============================
   VISUAL IMPROVEMENTS
   ============================ */

/* Glow nos cards de serviço no hover */
.service-card:hover {
  box-shadow: 0 8px 40px rgba(37,99,235,0.12), 0 2px 8px rgba(0,0,0,0.06);
}

/* Emergency strip — texto pulsante */
.emergency-text strong {
  animation: text-pulse 3s ease-in-out infinite;
}
@keyframes text-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* Subtle hero particles effect */
.hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
  bottom: -100px; right: 10%;
  border-radius: 50%;
  pointer-events: none;
  animation: particle-float 8s ease-in-out infinite;
}
@keyframes particle-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.1); }
}

/* Testimonial card featured glow */
.testimonial-featured {
  box-shadow: 0 8px 32px rgba(13,27,75,0.25);
}

/* Section divider accent */
.section-tag::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--blue-mid);
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

/* Area tag hover com animação */
.area-tag {
  transition: all 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.area-tag:hover {
  transform: scale(1.05);
}

/* Step number colorido */
.step-card:hover .step-number {
  color: var(--blue-light);
  transition: color 0.3s;
}

/* Floating WPP — tira do mobile quando sticky bar aparece */
@media (max-width: 768px) {
  .floating-wpp { display: none; }
  body { padding-bottom: 60px; }
  .hero::after { display: none; }
}

/* ============================
   POPUP — SERVICE TAGS
   ============================ */
.ep-services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.ep-service-tag {
  background: linear-gradient(135deg, rgba(13,27,75,0.07), rgba(37,99,235,0.07));
  border: 1px solid rgba(37,99,235,0.15);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
}

/* ============================
   CONVERSION SERVICE PAGE EXTRAS
   ============================ */

/* Urgency bar inside hero */
.service-urgency-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(220,38,38,0.15);
  border: 1px solid rgba(220,38,38,0.3);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fca5a5;
}
.urgency-dot {
  width: 8px; height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: blink 1s ease-in-out infinite;
  flex-shrink: 0;
}

/* Mid-content CTA block */
.service-mid-cta {
  background: linear-gradient(135deg, #0d1b4b, #1e3a8a);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 36px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.service-mid-cta .mc-icon { font-size: 2.5rem; flex-shrink: 0; }
.service-mid-cta .mc-text { flex: 1; min-width: 200px; }
.service-mid-cta .mc-text strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.service-mid-cta .mc-text span { font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.service-mid-cta .btn { flex-shrink: 0; }

/* Review strip */
.service-reviews {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 32px 0;
}
.service-reviews h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.review-list { display: flex; flex-direction: column; gap: 14px; }
.review-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid var(--gray-200);
}
.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.review-name { font-weight: 700; font-size: 0.9rem; color: var(--gray-800); }
.review-stars { color: #f59e0b; font-size: 0.85rem; }
.review-item p { font-size: 0.85rem; color: var(--gray-600); font-style: italic; line-height: 1.6; margin: 0; }
.review-source { font-size: 0.75rem; color: var(--gray-400); margin-top: 6px; }

/* FAQ accordion */
.service-faq { margin-top: 40px; }
.service-faq h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--blue-mid); }
.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition);
}
.faq-item.open .faq-question { background: rgba(37,99,235,0.04); color: var(--blue-mid); }
.faq-arrow { font-size: 0.75rem; transition: transform var(--transition); flex-shrink: 0; color: var(--gray-400); }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--blue-mid); }
.faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  background: #fff;
}
.faq-item.open .faq-answer { display: block; }

/* Sidebar review highlight */
.sidebar-review {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 18px;
  margin-top: 16px;
}
.sidebar-review .sr-stars { font-size: 1rem; color: #f59e0b; margin-bottom: 8px; }
.sidebar-review p { font-size: 0.82rem; color: var(--gray-600); font-style: italic; line-height: 1.6; margin: 0 0 6px; }
.sidebar-review .sr-author { font-size: 0.78rem; font-weight: 700; color: var(--gray-600); }

/* Related services section */
.related-services {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  padding: 48px 0;
}
.related-services .section-header { margin-bottom: 32px; }
.related-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.related-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition);
  text-decoration: none;
}
.related-card:hover {
  border-color: var(--blue-mid);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.related-card-icon {
  font-size: 1.8rem;
  width: 48px; height: 48px;
  background: var(--gray-50);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.related-card-text strong { display: block; font-size: 0.9rem; font-weight: 800; color: var(--gray-800); margin-bottom: 3px; }
.related-card-text small { font-size: 0.78rem; color: var(--blue-mid); font-weight: 600; }

/* Related/mid-cta responsive rules moved to main media queries above */

/* ============================
   MOBILE SIDEBAR (JS-built, outside header)
   ============================ */
#mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  backdrop-filter: blur(4px);
}
#mobile-overlay.open { display: block; }

#mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 290px;
  max-width: 85vw;
  background: #fff;
  z-index: 9999;
  box-shadow: 4px 0 30px rgba(0,0,0,0.2);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}
#mobile-sidebar.open { transform: translateX(0); }

.mobile-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 2px solid var(--gray-200);
}
.mobile-sidebar-header span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mobile-sidebar-header button {
  background: var(--gray-100);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.mobile-sidebar-header button:hover { background: var(--gray-200); }

.mobile-sidebar-link {
  display: block;
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-100);
  text-decoration: none;
  transition: background 0.15s;
}
.mobile-sidebar-link:hover { background: var(--gray-50); color: var(--blue-mid); }

.mobile-sidebar-title {
  padding: 14px 20px 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: none;
}

.mobile-sidebar-sub {
  display: block;
  padding: 11px 20px 11px 32px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-50);
  text-decoration: none;
  transition: background 0.15s;
}
.mobile-sidebar-sub:hover { background: var(--gray-50); color: var(--blue-mid); }

.mobile-sidebar-cta {
  margin-top: auto;
  padding: 16px 20px;
  border-top: 2px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
