
:root {
  --primary: #0b3c88;
  --primary-dark: #072859;
  --accent: #e67e22;
  --bg-light: #f3f4f6;
  --text: #111827;
  --muted: #6b7280;
  --radius-lg: 18px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.16);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background-color: #ffffff;
}

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

.btn {
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65rem 1.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #c05621);
  color: white;
  box-shadow: 0 14px 30px rgba(224, 118, 38, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(224, 118, 38, 0.75);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(148, 163, 184, 0.8);
}

.btn-outline:hover { background: rgba(239, 246, 255, 0.9); }

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(15, 23, 42, 0.96);
  border-bottom: 1px solid rgba(148, 163, 184, 0.45);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.7rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #e5e7eb;
}

.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #ffffff 0, #f97316 25%, #1d4ed8 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.7);
}

.logo-text-title { font-weight: 700; font-size: 1.05rem; }
.logo-text-sub { font-size: 0.78rem; color: #9ca3af; }

.nav { display: flex; gap: 1.3rem; font-size: 0.9rem; }
.nav a { color: #e5e7eb; opacity: 0.85; }
.nav a:hover { opacity: 1; }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }

.badge-24h {
  font-size: 0.8rem;
  background: rgba(56, 189, 248, 0.14);
  color: #bae6fd;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.7);
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.2rem;
}

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.2rem 1.2rem 2.8rem;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.7fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-left-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(254, 243, 199, 1);
  border: 1px solid rgba(245, 158, 11, 0.6);
  color: #92400e;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.hero-title {
  font-size: clamp(2.1rem, 2.8vw + 1rem, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 0.6rem;
}

.hero-title span { color: var(--primary); }

.hero-subtitle {
  color: var(--muted);
  font-size: 1rem;
  max-width: 36rem;
  margin-bottom: 1.1rem;
}

.hero-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-phone { font-weight: 700; font-size: 1.1rem; }
.hero-phone span { color: var(--accent); }

.hero-guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.hero-guarantees span { display: inline-flex; align-items: center; gap: 0.35rem; }
.hero-guarantees span::before { content: "✓"; font-size: 0.8rem; color: #16a34a; }

.hero-bottom-text { font-size: 0.8rem; color: var(--muted); }

.hero-right-card {
  background: radial-gradient(circle at top left, #fef3c7 0, #0b1120 60%);
  border-radius: 24px;
  padding: 1.5rem 1.4rem;
  color: #e5e7eb;
  box-shadow: var(--shadow-soft);
}
.hero-right-tag { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: #fed7aa; margin-bottom: 0.4rem;}
.hero-right-main { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.9rem; }
.hero-right-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0.9rem; margin-bottom: 1.1rem;}
.hero-right-item { background: rgba(15,23,42,0.72); border-radius: 16px; padding: 0.7rem 0.8rem; border:1px solid rgba(148,163,184,0.55);}
.hero-right-label { font-size:0.8rem;color:#9ca3af;}
.hero-right-value { font-size:0.98rem;font-weight:600;}
.hero-right-footer { font-size:0.8rem;color:#9ca3af;}

.section-header {
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:1rem;
  margin-bottom:1.4rem;
}
.section-kicker { font-size:0.78rem;text-transform:uppercase;letter-spacing:0.18em;color:#9ca3af;}
.section-title { font-size:1.4rem;font-weight:700;}
.section-description { font-size:0.95rem;color:var(--muted);max-width:32rem;}

.grid-3 { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.2rem;}
.grid-2 { display:grid;grid-template-columns:minmax(0,1.2fr) minmax(0,1fr);gap:1.4rem;align-items:flex-start;}

.card {
  background:#ffffff;
  border-radius:var(--radius-lg);
  padding:1rem;
  border:1px solid rgba(226,232,240,0.95);
  box-shadow:0 18px 46px rgba(15,23,42,0.05);
}

.card-pill { font-size:0.75rem;padding:0.18rem 0.6rem;border-radius:999px;background:rgba(37,99,235,0.06);color:#1d4ed8;display:inline-block;margin-bottom:0.4rem;}
.card-title { font-size:1rem;font-weight:600;margin-bottom:0.35rem;}
.card-text { font-size:0.9rem;color:var(--muted);margin-bottom:0.5rem;}
.card-meta { font-size:0.8rem;color:#64748b;}

.list-check { list-style:none;padding:0;margin:0.4rem 0 0;}
.list-check li { font-size:0.9rem;color:var(--muted);margin-bottom:0.4rem;display:flex;align-items:flex-start;gap:0.35rem;}
.list-check li::before { content:"✓";font-size:0.85rem;color:#16a34a;margin-top:0.12rem;}

.price-table { width:100%;border-collapse:collapse;font-size:0.9rem;}
.price-table th, .price-table td { padding:0.55rem 0.4rem;border-bottom:1px solid rgba(226,232,240,0.9);}
.price-table th { text-align:left;font-size:0.78rem;text-transform:uppercase;letter-spacing:0.12em;color:#9ca3af;}
.price-table td:nth-child(2) { font-weight:600;}

.zones-grid { display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:0.6rem;}
.zone-pill { border-radius:999px;border:1px dashed rgba(148,163,184,0.7);padding:0.35rem 0.75rem;font-size:0.8rem;color:#4b5563;background:#f9fafb;}

.faq-grid { display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0.9rem;}
.faq-item { border-radius:16px;border:1px solid rgba(226,232,240,0.95);padding:0.8rem 0.9rem;background:#ffffff;}
.faq-q { font-size:0.9rem;font-weight:600;margin-bottom:0.25rem;}
.faq-a { font-size:0.85rem;color:var(--muted);}

.footer { border-top:1px solid rgba(226,232,240,0.95);padding:1.4rem 1.3rem 1.8rem;font-size:0.8rem;color:#9ca3af;}
.footer-inner { max-width:1120px;margin:0 auto;display:flex;justify-content:space-between;flex-wrap:wrap;gap:0.8rem;}
.footer-links { display:flex;gap:0.85rem;flex-wrap:wrap;}
.footer-links a { color:#94a3b8;}

.floating-call { position:fixed;right:1rem;bottom:1rem;z-index:45;}
.floating-call a { display:inline-flex;align-items:center;gap:0.4rem;padding:0.65rem 1.1rem;border-radius:999px;background:var(--accent);color:white;font-size:0.85rem;font-weight:600;box-shadow:0 14px 32px rgba(224,118,38,0.8);}

@media (max-width:900px){
  .hero{grid-template-columns:minmax(0,1fr);}
  .hero-right-card{order:-1;}
  .grid-3{grid-template-columns:repeat(2,minmax(0,1fr));}
  .grid-2{grid-template-columns:minmax(0,1fr);}
  .zones-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
  .faq-grid{grid-template-columns:minmax(0,1fr);}
}
@media (max-width:720px){
  .header-inner{flex-wrap:wrap;justify-content:center;gap:0.5rem 1rem;}
  .nav{display:none;}
  .hero{padding-top:1.6rem;}
  .grid-3{grid-template-columns:minmax(0,1fr);}
  .zones-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}

/* === SEO GOD MODE (adds content without breaking design) === */
.breadcrumbs{
  font-size:.92rem;
  color:rgba(15,23,42,.70);
  margin:.5rem 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:.35rem;
  align-items:center;
}
.breadcrumbs a{ color:var(--primary); text-decoration:none; }
.breadcrumbs a:hover{ text-decoration:underline; }
.breadcrumbs span{ opacity:.85; }

.btn-whatsapp{
  background:#25D366;
  color:#062a14;
  border:1px solid rgba(0,0,0,.08);
}
.btn-whatsapp:hover{ filter:brightness(.98); }

.seo-section{
  margin-top:1.6rem;
  padding-top:1.6rem;
  border-top:1px solid rgba(226,232,240,0.95);
}
.seo-bullets{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:.5rem 1rem;
  margin:1rem 0 1.2rem;
}
.seo-bullets li{ margin-left:1.1rem; }
@media (max-width:720px){
  .seo-bullets{ grid-template-columns:1fr; }
}

.seo-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
  margin:0 0 1.2rem;
}

.seo-links-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1rem;
  margin:0 0 1.2rem;
}
@media (max-width:860px){
  .seo-links-grid{ grid-template-columns:1fr; }
}
.seo-links-box{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:14px;
  padding:1rem;
  box-shadow:0 10px 30px rgba(2,6,23,.05);
}
.chips{ display:flex; flex-wrap:wrap; gap:.5rem; margin-top:.6rem; }
.chip{
  display:inline-flex;
  padding:.45rem .7rem;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.12);
  text-decoration:none;
  color:rgba(15,23,42,.92);
  background:rgba(15,23,42,.02);
  font-size:.92rem;
}
.chip:hover{ background:rgba(11,60,136,.06); border-color:rgba(11,60,136,.22); }
.chip-ghost{ background:transparent; }

.faq details{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:14px;
  padding:.8rem 1rem;
  margin:.6rem 0;
}
.faq summary{
  cursor:pointer;
  font-weight:700;
  color:rgba(15,23,42,.92);
  list-style:none;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq details p{ margin:.6rem 0 0; color:rgba(15,23,42,.78); }

.footer-nap a{ color:var(--primary); text-decoration:none; }
.footer-nap a:hover{ text-decoration:underline; }

.floating-cta{
  position:fixed;
  right:14px;
  bottom:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:999;
}
.floating-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.75rem .95rem;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  box-shadow:0 12px 35px rgba(2,6,23,.22);
  background:var(--primary);
  color:#fff;
}
.floating-wa{ background:#25D366; color:#062a14; }
@media (min-width:980px){
  .floating-cta{ right:18px; bottom:18px; }
}
