/* ===========================
   OPTIMUS MOTO SOCORRO - LP
   =========================== */

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #E61E28;
  --red-dark: #B8161F;
  --red-light: #FF3B44;
  --black: #000000;
  --bg: #0A0A0A;
  --bg-card: #111111;
  --bg-dark: #050505;
  --bg-gray: #0F0F0F;
  --border: #1E1E1E;
  --white: #FFFFFF;
  --gray: #888888;
  --gray-light: #BBBBBB;
  --green-wa: #25D366;
  --green-wa-dark: #1DAA54;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-red: 0 4px 24px rgba(230,30,40,0.3);
  --transition: 0.25s ease;
  --font-heading: 'Anton', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.red { color: var(--red); }

.section {
  padding: 80px 0;
}

.section--dark {
  background-color: var(--bg-dark);
}

.section--gray {
  background-color: var(--bg-gray);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-light);
  max-width: 560px;
  margin: 0 auto;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-whatsapp {
  background-color: var(--green-wa);
  color: var(--white);
  border-color: var(--green-wa);
}

.btn-whatsapp:hover {
  background-color: var(--green-wa-dark);
  border-color: var(--green-wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

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

.btn-white {
  background-color: var(--white);
  color: var(--red);
  border-color: var(--white);
  font-weight: 700;
}

.btn-white:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-xl {
  padding: 20px 48px;
  font-size: 1.2rem;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background-color: rgba(10,10,10,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.navbar.scrolled {
  padding: 10px 0;
  background-color: rgba(5,5,5,0.98);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-cta {
  padding: 12px 24px;
  font-size: 0.95rem;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background-color: var(--black);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(230,30,40,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(230,30,40,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230,30,40,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(230,30,40,0.12);
  border: 1px solid rgba(230,30,40,0.3);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #FF6B70;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--red);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat strong {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--white);
}

.stat span {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: var(--border);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(230,30,40,0.18) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-svg-logo {
  width: 100%;
  max-width: 420px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 24px rgba(230,30,40,0.35));
}

.hero-car-img {
  width: 100%;
  max-width: 420px;
  mix-blend-mode: screen;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gray);
  animation: bounce-down 2s infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* === URGENCY BAR === */
.urgency-bar {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 16px 0;
  position: relative;
  overflow: hidden;
}

.urgency-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(0,0,0,0.08) 10px,
    rgba(0,0,0,0.08) 20px
  );
}

.urgency-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.urgency-pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--white);
  animation: pulse-dot 1.5s infinite;
  flex-shrink: 0;
}

.urgency-inner p {
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: rgba(230,30,40,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card--featured {
  border-color: rgba(230,30,40,0.3);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(230,30,40,0.05) 100%);
}

.service-card--featured::before {
  opacity: 1;
  background: linear-gradient(90deg, var(--red), var(--red-light));
}

.service-icon {
  margin-bottom: 20px;
}

.service-tag {
  display: inline-block;
  background-color: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--transition);
}

.service-link:hover {
  gap: 12px;
}

/* === DIFERENCIAIS === */
.diferentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.diferential {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--bg-card);
  transition: all var(--transition);
}

.diferential:hover {
  border-color: rgba(230,30,40,0.2);
  transform: translateY(-4px);
}

.diferential-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(230,30,40,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.diferential h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.diferential p {
  color: var(--gray-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* === STEPS === */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 48px;
}

.step {
  flex: 1;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition);
}

.step:hover {
  border-color: rgba(230,30,40,0.3);
  transform: translateY(-4px);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 400;
  color: rgba(230,30,40,0.2);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.step-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-content p {
  color: var(--gray-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

.step-arrow {
  padding-top: 60px;
  flex-shrink: 0;
  opacity: 0.6;
}

.steps-cta {
  text-align: center;
}

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}

.testimonial:hover {
  border-color: rgba(230,30,40,0.2);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: #FFB800;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial p {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* === COVERAGE === */
.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.coverage-text {
  color: var(--gray-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.coverage-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.coverage-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-light);
}

.coverage-list li svg {
  flex-shrink: 0;
}

.map-placeholder {
  background-color: var(--bg-card);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  max-width: 360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(230,30,40,0.08) 0%, transparent 70%);
}

.map-placeholder p {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
}

.map-placeholder span {
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--red-dark) 0%, #8B0000 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(0,0,0,0.05) 20px,
    rgba(0,0,0,0.05) 40px
  );
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-whatsapp {
  background-color: var(--white);
  color: var(--green-wa-dark);
  border-color: var(--white);
}

.cta-section .btn-whatsapp:hover {
  background-color: #f0f0f0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.cta-section .btn-outline {
  border-color: rgba(255,255,255,0.5);
}

.cta-section .btn-outline:hover {
  border-color: var(--white);
  background-color: rgba(255,255,255,0.1);
}

/* === FOOTER === */
.footer {
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 4px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray-light);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-col li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray-light);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.8;
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--green-wa);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  animation: float-in 0.5s ease 1s both;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.3);
  animation: ring-pulse 2.5s infinite;
}

@keyframes ring-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

@keyframes float-in {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.whatsapp-float:hover {
  background-color: var(--green-wa-dark);
  transform: scale(1.1);
}

.whatsapp-tooltip {
  position: absolute;
  right: 76px;
  background-color: var(--bg-card);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  border: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: all var(--transition);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid var(--border);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* === ANIMATIONS === */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up 0.7s ease forwards;
}

.animate-fade-left {
  opacity: 0;
  transform: translateX(40px);
  animation: fade-left 0.8s ease forwards;
}

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-left {
  to { opacity: 1; transform: translateX(0); }
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.delay-3 { transition-delay: 0.36s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .diferentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  .navbar { padding: 12px 0; }
  .nav-brand { display: none; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-image { order: -1; }
  .hero-logo-wrap { max-width: 320px; margin: 0 auto; }
  .hero-svg-logo { max-width: 320px; }
  .hero-car-img { max-width: 320px; margin-top: -30px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .diferentials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .steps {
    flex-direction: column;
    gap: 12px;
  }
  .step-arrow {
    padding-top: 0;
    transform: rotate(90deg);
    align-self: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .coverage-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .map-placeholder { max-width: 280px; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .cta-actions { flex-direction: column; align-items: center; }
  .btn-xl { width: 100%; max-width: 360px; }

  .urgency-inner { flex-direction: column; text-align: center; }

  .section-title { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; }
  .hero-stats { gap: 16px; }
  .stat strong { font-size: 1.5rem; }

  .footer-links { grid-template-columns: 1fr; }

  .nav-cta span { display: none; }
  .nav-cta {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
  }

  .whatsapp-float { bottom: 20px; right: 20px; width: 56px; height: 56px; }
}
