/* ══════════════════════════════════════════════════════════
   rs-home.css — Estilos da home page União RH MG
   Carregado automaticamente na front page pelo child theme.
   ══════════════════════════════════════════════════════════ */

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

:root {
  --red: #DD3333;
  --red-dark: #B82828;
  --red-glow: rgba(221,51,51,0.35);
  --black: #0A0A0A;
  --dark: #111111;
  --dark-2: #1A1A1A;
  --dark-3: #222222;
  --dark-card: #161616;
  --white: #FFFFFF;
  --gray-100: #F5F5F5;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --text: #E8E8E8;
  --text-muted: #9CA3AF;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
}

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

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

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

/* ───── ANIMATIONS ───── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes borderDraw {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes blink {
  0%, 100% { opacity: 1; } 50% { opacity: 0; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ───── NAVBAR ───── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}
#navbar.scrolled {
  height: 60px;
  background: rgba(10,10,10,0.97);
  border-bottom-color: rgba(221,51,51,0.2);
}

.nav-logo img { height: 38px; width: auto; }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--red); color: var(--red); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--red-glow);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ───── MOBILE NAV ───── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  padding: 24px 5% 32px;
  z-index: 999;
  border-bottom: 1px solid rgba(221,51,51,0.2);
  flex-direction: column;
  gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ───── HERO ───── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 5% 80px;
  gap: 60px;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
}
.hero-visual-frame img {
  width: 100%; height: 580px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  filter: brightness(0.85);
}
.hero-visual-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(221,51,51,.25) 0%, transparent 60%),
              linear-gradient(180deg, transparent 50%, rgba(10,10,10,.8) 100%);
  border-radius: 24px;
  pointer-events: none;
}
.hero-visual::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px; right: 12px; bottom: 12px;
  border: 2px solid rgba(221,51,51,.25);
  border-radius: 28px;
  pointer-events: none;
}
.hero-img-badge {
  position: absolute;
  bottom: 24px; left: 24px; z-index: 10;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(221,51,51,.3);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-img-badge-icon {
  width: 40px; height: 40px;
  background: var(--red); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.hero-img-badge-text strong {
  display: block; font-size: .88rem; font-weight: 700; color: #fff;
}
.hero-img-badge-text span {
  font-size: .72rem; color: var(--text-muted);
}

@media (max-width: 1024px) {
  #hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(221,51,51,0.12) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 10% 80%, rgba(221,51,51,0.06) 0%, transparent 60%),
              linear-gradient(135deg, #0A0A0A 0%, #111111 50%, #0D0D0D 100%);
}

.hero-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: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 6s ease-in-out infinite;
}
.orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(221,51,51,0.18), transparent 70%);
  top: -100px; right: 5%;
  animation-delay: 0s;
}
.orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(221,51,51,0.10), transparent 70%);
  bottom: 0; left: 10%;
  animation-delay: 3s;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(221,51,51,0.12);
  border: 1px solid rgba(221,51,51,0.3);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeIn 0.6s ease both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.5s ease infinite;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-title .highlight {
  color: var(--red);
  position: relative;
  display: inline-block;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  opacity: 0.4;
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease 0.35s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 0.8s ease 0.5s both;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.btn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-hero:hover::before { transform: translateX(100%); }
.btn-hero:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px var(--red-glow);
}

.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 16px 32px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-outline-hero:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.65s both;
}
.stat-item { text-align: left; }
.stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-number span { color: var(--red); }
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
}

/* ───── TICKER / MARQUEE ───── */
.ticker-wrapper {
  background: var(--red);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.ticker-item svg { opacity: 0.7; flex-shrink: 0; }
.ticker-dot {
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}

/* ───── SECTION HEADERS ───── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--red); }

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
}

/* ───── SERVICES ───── */
#services {
  padding: 100px 5%;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
#services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(221,51,51,0.4), transparent);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}
.services-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  group: true;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 120%, rgba(221,51,51,0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  border-color: rgba(221,51,51,0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(221,51,51,0.1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }
.service-card:hover .service-icon { background: var(--red); }

.service-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  filter: grayscale(30%) brightness(0.85);
  transition: filter 0.4s;
}
.service-card:hover .service-image { filter: grayscale(0%) brightness(1); }

.service-icon {
  width: 48px; height: 48px;
  background: rgba(221,51,51,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s;
  position: relative;
  z-index: 1;
}
.service-icon svg { width: 22px; height: 22px; color: var(--red); }
.service-card:hover .service-icon svg { color: var(--white); }

.service-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.service-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ───── CTA COMERCIAL ───── */
#cta-comercial {
  padding: 100px 5%;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
#cta-comercial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 100%, rgba(221,51,51,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.cta-quote-mark {
  display: inline-block;
  width: 56px;
  height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 0 40px rgba(221,51,51,0.4);
}
.cta-quote-mark svg { color: #fff; }
blockquote.cta-quote {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.6;
  color: var(--white);
  margin: 0 0 24px;
  position: relative;
}
blockquote.cta-quote::before {
  content: '"';
  font-size: 6rem;
  line-height: 0;
  position: absolute;
  top: 44px;
  left: -28px;
  color: var(--red);
  opacity: 0.3;
  font-family: Georgia, serif;
}
.cta-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 18px 36px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 240px;
}
.cta-btn-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-btn-city { font-size: 1.05rem; }
.cta-btn-phone {
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0.85;
}
.cta-btn-pa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 32px rgba(37,211,102,0.3);
}
.cta-btn-pa:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.45);
}
.cta-btn-ext {
  background: transparent;
  color: #25D366;
  border: 2px solid #25D366;
  box-shadow: 0 8px 32px rgba(37,211,102,0.1);
}
.cta-btn-ext:hover {
  background: rgba(37,211,102,0.08);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.2);
}
@media (max-width: 600px) {
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-btn { width: 100%; max-width: 320px; }
  blockquote.cta-quote::before { display: none; }
}

/* ───── ABOUT ───── */
#about {
  padding: 100px 5%;
  background: var(--black);
  position: relative;
}

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

.about-visual {
  position: relative;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: brightness(0.7);
}
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(221,51,51,0.25) 0%, transparent 60%);
  border-radius: var(--radius-lg);
}
.about-badge-float {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--red);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 20px 60px rgba(221,51,51,0.3);
}
.about-badge-float .big-number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}
.about-badge-float p {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.about-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.pillar-icon {
  width: 40px; height: 40px;
  background: rgba(221,51,51,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-icon svg { width: 18px; height: 18px; color: var(--red); }
.pillar-text strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.pillar-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ───── STATS ───── */
#stats {
  padding: 80px 5%;
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-card {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.stat-card:last-child { border-right: none; }
.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.5s ease;
}
.stat-card:hover::before { width: 40px; }
.stat-card-num {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card-num em { color: var(--red); font-style: normal; }
.stat-card-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 500;
}

/* ───── WHY US ───── */
#why {
  padding: 100px 5%;
  background: var(--dark);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  margin-top: 64px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.why-list { list-style: none; }
.why-list li {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: all 0.2s;
}
.why-list li:last-child { border-bottom: none; }
.why-list li:hover .why-num { background: var(--red); color: var(--white); }
.why-num {
  min-width: 44px; height: 44px;
  background: rgba(221,51,51,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  transition: all 0.3s;
}
.why-text strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.why-text p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ───── CTA CANDIDATES ───── */
#candidates {
  padding: 80px 5%;
  background: var(--black);
}
.candidates-inner {
  background: linear-gradient(135deg, var(--red) 0%, #B82020 100%);
  border-radius: 24px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.candidates-inner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
}
.candidates-inner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,0,0,0.15), transparent 70%);
}
.candidates-text { position: relative; z-index: 1; }
.candidates-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.candidates-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.7;
}
.candidates-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.btn-white {
  background: var(--white);
  color: var(--red);
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.25s;
  display: block;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.btn-white-outline {
  background: transparent;
  color: var(--white);
  padding: 15px 28px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.5);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.25s;
  display: block;
}
.btn-white-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ───── LOCATIONS ───── */
#locations {
  padding: 100px 5%;
  background: var(--dark);
}
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.location-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.location-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
  border-radius: 3px 0 0 3px;
}
.location-card:hover {
  border-color: rgba(221,51,51,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.location-city {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.location-state {
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.location-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}
.location-row svg { flex-shrink: 0; margin-top: 2px; color: var(--red); }
.location-wpp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: rgba(37,211,102,0.12);
  color: #25D366;
  border: 1px solid rgba(37,211,102,0.25);
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.location-wpp:hover { background: rgba(37,211,102,0.2); }

/* ───── CONTACT ───── */
#contact {
  padding: 100px 5%;
  background: var(--black);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
  margin-top: 56px;
}
.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

.contact-form {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-control {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: all 0.2s;
  outline: none;
  width: 100%;
}
.form-control::placeholder { color: rgba(255,255,255,0.25); }
.form-control:focus {
  border-color: var(--red);
  background: rgba(221,51,51,0.05);
  box-shadow: 0 0 0 3px rgba(221,51,51,0.1);
}
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }

.btn-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.25s;
  letter-spacing: 0.02em;
}
.btn-submit:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--red-glow);
}

/* ───── FOOTER ───── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 5% 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
  text-decoration: none;
}
.social-btn:hover { background: var(--red); color: var(--white); }
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.8rem;
}
.footer-bottom a { color: var(--gray-500); text-decoration: none; }
.footer-bottom a:hover { color: var(--red); }

/* ───── FLOATING WHATSAPP ───── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 12px;
}
.whatsapp-tooltip {
  background: var(--dark-2);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s;
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}
.whatsapp-btn {
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: all 0.3s;
  position: relative;
}
.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: pulse-ring 2s ease-out infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn svg { width: 28px; height: 28px; color: white; }

/* ───── SCROLL TO TOP ───── */
.scroll-top {
  position: fixed;
  bottom: 100px; right: 28px;
  z-index: 8999;
  width: 44px; height: 44px;
  background: rgba(221,51,51,0.15);
  border: 1px solid rgba(221,51,51,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(10px);
  color: var(--red);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--red); color: var(--white); }

/* ───── RESPONSIVE ───── */
@media (max-width: 1024px) {
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-card:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .candidates-inner { grid-template-columns: 1fr; padding: 40px 28px; }
  .locations-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-badge-float { position: static; margin-top: 20px; display: inline-block; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-hero, .btn-outline-hero { text-align: center; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ───── CITY SELECTOR MODAL ───── */
.city-modal{position:fixed;inset:0;z-index:9999;display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:opacity .25s}
.city-modal.open{opacity:1;pointer-events:all}
.city-modal-overlay{position:absolute;inset:0;background:rgba(0,0,0,.6);backdrop-filter:blur(4px)}
.city-modal-box{position:relative;background:#fff;border-radius:16px;padding:36px 32px 32px;max-width:380px;width:90%;text-align:center;box-shadow:0 16px 64px rgba(0,0,0,.2);transform:translateY(20px) scale(.97);transition:transform .25s}
.city-modal.open .city-modal-box{transform:translateY(0) scale(1)}
.city-modal-close{position:absolute;top:14px;right:16px;background:none;border:none;font-size:1.1rem;cursor:pointer;color:#6B7280;line-height:1}
.city-modal-close:hover{color:#111}
.city-modal-icon{width:48px;height:48px;background:rgba(221,51,51,.1);border-radius:12px;display:flex;align-items:center;justify-content:center;margin:0 auto 16px;color:#DD3333}
.city-modal-title{font-family:'Poppins',sans-serif;font-size:1.1rem;font-weight:800;color:#111;margin-bottom:6px}
.city-modal-sub{font-size:.85rem;color:#6B7280;margin-bottom:24px}
.city-modal-btns{display:flex;flex-direction:column;gap:10px}
.city-modal-btn{display:flex;align-items:center;justify-content:center;gap:10px;padding:14px 20px;border-radius:10px;font-family:'Poppins',sans-serif;font-weight:700;font-size:.95rem;text-decoration:none;transition:transform .15s,box-shadow .15s}
.city-modal-btn-pa{background:#DD3333;color:#fff;box-shadow:0 4px 16px rgba(221,51,51,.3)}
.city-modal-btn-pa:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(221,51,51,.4)}
.city-modal-btn-ext{background:#f3f3f3;color:#111;border:1.5px solid #e5e5e5}
.city-modal-btn-ext:hover{transform:translateY(-2px);box-shadow:0 4px 16px rgba(0,0,0,.1)}
