:root {
  --primary: #e31b23;
  --primary-dark: #b51218;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #f8fafc;
  --card: #ffffff;
  --line: #e5e7eb;
  --success: #16a34a;
  --shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.topbar {
  background: #111827;
  color: #fff;
  font-size: 14px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: wrap;
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
}
.logo-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a { color: var(--muted); font-weight: 600; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { background: #fff; border-color: var(--line); }
.btn-whatsapp { background: var(--success); color: #fff; }
.hero {
  padding: 64px 0 48px;
  background: linear-gradient(135deg, #fff 0%, #fff 55%, #fee2e2 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #fecaca;
  color: var(--primary);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}
.hero h1, .page-hero h1 {
  margin: 16px 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}
.hero p, .page-hero p {
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 24px;
}
.hero-card, .card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card { padding: 26px; }
.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.metric {
  padding: 16px;
  border-radius: 14px;
  background: #f9fafb;
  border: 1px solid var(--line);
}
.metric strong { display: block; font-size: 22px; }
.section { padding: 72px 0; }
.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.section-title h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 10px;
}
.section-title p { margin: 0; color: var(--muted); }
.grid-3, .grid-4, .grid-2 {
  display: grid;
  gap: 22px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.service-card, .branch-card, .faq-item, .price-card, .info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.service-card h3, .branch-card h3, .price-card h3, .info-card h3 { margin: 0 0 10px; }
.service-icon, .price-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fee2e2;
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 16px;
}
.branch-card .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.branch-card small, .muted { color: var(--muted); }
.list-clean {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.list-clean li {
  padding-left: 24px;
  position: relative;
  margin: 8px 0;
}
.list-clean li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 900;
}
.cta-banner {
  background: linear-gradient(135deg, var(--primary), #ef4444);
  color: #fff;
  border-radius: 28px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-banner p { margin: 8px 0 0; opacity: 0.95; }
.page-hero {
  padding: 56px 0;
  background: linear-gradient(135deg, #fff 0%, #fff 65%, #fef2f2 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero .breadcrumb {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}
.price-note {
  padding: 18px 20px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 16px;
  color: #92400e;
  margin-bottom: 24px;
}
.faq-item { margin-bottom: 16px; }
.faq-item h3 { margin: 0 0 8px; font-size: 19px; }
.footer {
  background: #111827;
  color: #e5e7eb;
  padding: 56px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 26px;
  margin-bottom: 20px;
}
.footer a { color: #e5e7eb; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin: 10px 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 18px;
  color: #9ca3af;
  font-size: 14px;
}
.table-price {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.table-price th, .table-price td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.table-price th { background: #f9fafb; }
.notice {
  padding: 20px;
  border-radius: 16px;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
}
@media (max-width: 960px) {
  .hero-grid, .grid-4, .grid-3, .grid-2, .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero { padding-top: 40px; }
}
