@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --fire: #FF4500;
  --ember: #FF7A2F;
  --coal: #0A0A0A;
  --ash: #161616;
  --smoke: #222222;
  --border: rgba(255,69,0,0.18);
  --light: #F2EDE4;
  --white: #FFFFFF;
  --gold: #FFBC3D;
  --green: #28C76F;
  --gray: #7A7A7A;
  --gray-light: #AAAAAA;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--coal);
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── TOP BAR ─── */
.topbar {
  background: var(--fire);
  padding: 9px 20px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  z-index: 200;
}
.topbar a { color: #fff; text-decoration: none; font-weight: 800; }
.topbar a:hover { text-decoration: underline; }

/* ─── HEADER ─── */
header {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 190;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.55rem;
  color: #fff;
  letter-spacing: 0.04em;
}
.logo-tag {
  font-size: 0.62rem;
  color: var(--fire);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--fire);
  color: #fff !important;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 5px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.cta-phone:hover { background: #d93800; transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 65% 45%, rgba(255,69,0,0.13) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 15% 85%, rgba(255,122,47,0.07) 0%, transparent 60%),
    linear-gradient(180deg, #0A0A0A 0%, #0E0E0E 100%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,69,0,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,69,0,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-wrap {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 28px 80px;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,69,0,0.12);
  border: 1px solid rgba(255,69,0,0.35);
  color: var(--fire);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-pill::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--fire);
  animation: blink 1.8s infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.4)} }

.hero h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  line-height: 0.92;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.hero h1 .accent { color: var(--fire); }
.hero-sub {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  color: var(--ember);
  letter-spacing: 0.06em;
  margin-bottom: 22px;
}
.hero-body {
  font-size: 1.05rem;
  color: rgba(242,237,228,0.72);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }

.btn { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; border-radius: 5px; font-weight: 700; font-size: 1rem; transition: all 0.2s; border: none; cursor: pointer; padding: 15px 30px; }
.btn-fire { background: var(--fire); color: #fff; }
.btn-fire:hover { background: #d93800; transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.2); }
.btn-outline:hover { border-color: var(--fire); color: var(--fire); }

.hero-kpis { display: flex; gap: 36px; flex-wrap: wrap; }
.kpi { line-height: 1; }
.kpi-val {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.1rem;
  color: var(--fire);
  letter-spacing: 0.04em;
  display: block;
}
.kpi-label {
  font-size: 0.72rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 3px;
}

/* ─── FORM CARD ─── */
.form-card {
  background: var(--ash);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 38px 34px;
  position: relative;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fire), var(--ember));
  border-radius: 14px 14px 0 0;
}
.form-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 5px;
}
.form-sub {
  font-size: 0.83rem;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.5;
}
.form-sub strong { color: var(--green); }
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 7px;
}
.field input {
  width: 100%;
  background: var(--smoke);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 7px;
  padding: 13px 15px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus { border-color: var(--fire); }
.field input::placeholder { color: rgba(255,255,255,0.25); }
.form-btn {
  width: 100%;
  background: var(--fire);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 15px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 6px;
  letter-spacing: 0.03em;
}
.form-btn:hover { background: #d93800; }
.form-legal {
  font-size: 0.7rem;
  color: rgba(122,122,122,0.7);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: rgba(255,69,0,0.07);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 28px;
}
.trust-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.79rem;
  font-weight: 700;
  color: rgba(242,237,228,0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.trust-item svg { color: var(--fire); flex-shrink: 0; }

/* ─── ALERT 72H ─── */
.alert-72 {
  background: linear-gradient(135deg, #160500 0%, #200900 100%);
  border-top: 1px solid rgba(255,69,0,0.25);
  border-bottom: 1px solid rgba(255,69,0,0.25);
  padding: 36px 28px;
}
.alert-72-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.alert-icon { font-size: 3.5rem; flex-shrink: 0; }
.alert-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8rem;
  color: var(--fire);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  line-height: 1;
}
.alert-body { font-size: 0.92rem; color: rgba(242,237,228,0.75); line-height: 1.65; max-width: 720px; }
.alert-body strong { color: var(--ember); }

/* ─── SECTIONS ─── */
.section { padding: 86px 28px; max-width: 1240px; margin: 0 auto; }
.section-bg { padding: 86px 0; }
.section-bg .section { padding-top: 0; padding-bottom: 0; }

.eyebrow {
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 10px;
}
.sec-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
  margin-bottom: 14px;
}
.sec-desc {
  font-size: 1rem;
  color: rgba(242,237,228,0.6);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 48px;
}

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 18px;
}
.srv-card {
  background: var(--ash);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.srv-card:hover { border-color: rgba(255,69,0,0.35); transform: translateY(-3px); }
.srv-card::after {
  content: attr(data-n);
  position: absolute;
  right: 18px; top: 14px;
  font-family: 'Bebas Neue', cursive;
  font-size: 2.8rem;
  color: rgba(255,69,0,0.07);
  line-height: 1;
  letter-spacing: 0.04em;
}
.srv-icon { font-size: 2.1rem; margin-bottom: 14px; }
.srv-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 8px;
}
.srv-body { font-size: 0.86rem; color: rgba(242,237,228,0.58); line-height: 1.65; }

/* ─── IMAGE SECTIONS ─── */
.img-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 40px;
}
.img-split img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.img-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  text-align: center;
}
.img-label-before { background: #333; color: #aaa; }
.img-label-after { background: var(--green); color: #fff; }

/* ─── CITY PHOTO SECTION ─── */
.city-photo-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 320px;
  margin-bottom: 40px;
}
.city-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.city-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.city-photo-caption {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
}

/* ─── INSURANCE ─── */
.insurance-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.ins-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 0.95;
  color: #fff;
  margin-bottom: 14px;
}
.ins-title .green { color: var(--green); }
.ins-body { font-size: 0.94rem; color: rgba(242,237,228,0.65); line-height: 1.75; margin-bottom: 28px; }
.steps { list-style: none; }
.step-item { display: flex; gap: 16px; margin-bottom: 22px; }
.step-n {
  width: 32px; height: 32px; min-width: 32px;
  background: var(--fire);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.82rem; color: #fff;
  margin-top: 2px;
}
.step-t { font-weight: 700; font-size: 0.9rem; color: #fff; margin-bottom: 3px; }
.step-d { font-size: 0.82rem; color: var(--gray); line-height: 1.55; }
.ins-brands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}
.ins-badge {
  background: var(--smoke);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 13px 8px;
  text-align: center;
  font-size: 0.77rem;
  font-weight: 600;
  color: rgba(242,237,228,0.65);
  letter-spacing: 0.04em;
}
.tip-box {
  background: rgba(40,199,111,0.09);
  border: 1px solid rgba(40,199,111,0.28);
  border-radius: 10px;
  padding: 18px 20px;
  margin-top: 20px;
}
.tip-box-title { font-weight: 800; color: var(--green); font-size: 0.85rem; margin-bottom: 6px; }
.tip-box p { font-size: 0.82rem; color: rgba(242,237,228,0.72); line-height: 1.6; }

/* ─── PROCESS ─── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
}
.proc-step {
  padding: 30px 26px;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.proc-step:hover { background: rgba(255,69,0,0.05); }
.proc-n {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.6rem;
  color: rgba(255,69,0,0.28);
  line-height: 1;
  margin-bottom: 10px;
}
.proc-t { font-weight: 700; font-size: 0.92rem; color: #fff; margin-bottom: 7px; }
.proc-d { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }

/* ─── TESTIMONIALS ─── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}
.testi-card {
  background: var(--ash);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 28px 24px;
}
.stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-quote { font-size: 0.91rem; color: rgba(242,237,228,0.78); line-height: 1.72; margin-bottom: 20px; font-style: italic; }
.testi-who { display: flex; gap: 12px; align-items: center; }
.testi-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--fire);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.88rem; color: #fff; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.87rem; color: #fff; }
.testi-loc { font-size: 0.74rem; color: var(--gray); margin-top: 2px; }

/* ─── PROVINCES / CITIES GRID ─── */
.provinces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.province-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  height: 200px;
  transition: transform 0.25s;
}
.province-card:hover { transform: translateY(-4px); }
.province-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.province-card:hover img { transform: scale(1.05); }
.province-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: background 0.25s;
}
.province-card:hover .province-card-overlay { background: linear-gradient(180deg, rgba(255,69,0,0.12) 0%, rgba(0,0,0,0.85) 100%); }
.province-card-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.province-card-tag {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.province-card-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--fire);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 100px;
}

/* ─── FAQ ─── */
.faq-wrap { max-width: 820px; }
.faq-q {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}
.faq-question {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.faq-answer { font-size: 0.87rem; color: rgba(242,237,228,0.63); line-height: 1.72; }

/* ─── CONTACT ─── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 72px;
  align-items: start;
}
.contact-phone {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  color: var(--fire);
  letter-spacing: 0.08em;
  display: block;
  text-decoration: none;
  margin: 14px 0;
  line-height: 1;
}
.contact-phone:hover { color: var(--ember); }
.contact-meta { font-size: 0.83rem; color: var(--gray); margin-top: 6px; }
.contact-btns { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  background: rgba(22,22,22,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 9px 28px;
}
.bc-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; gap: 7px; align-items: center;
  font-size: 0.77rem; color: var(--gray); flex-wrap: wrap;
}
.bc-inner a { color: var(--gray); text-decoration: none; }
.bc-inner a:hover { color: var(--fire); }
.bc-sep { color: rgba(255,255,255,0.18); }

/* ─── FOOTER ─── */
footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 52px 28px 32px;
}
.footer-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 40px;
}
.footer-logo-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.55rem;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.footer-about { font-size: 0.82rem; color: var(--gray); line-height: 1.7; max-width: 320px; }
.footer-phone { font-size: 0.83rem; color: var(--fire); font-weight: 700; margin-top: 14px; }
.footer-col-title {
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fire); margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--gray); text-decoration: none; font-size: 0.84rem; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  max-width: 1240px; margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-copy { font-size: 0.76rem; color: rgba(122,122,122,0.55); }

/* ─── WHATSAPP FLOAT ─── */
.wa-btn {
  position: fixed; bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; z-index: 500;
  box-shadow: 0 4px 22px rgba(37,211,102,0.38);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }

/* ─── DARK SECTION BG ─── */
.bg-ash { background: var(--ash); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.bg-dark-fire { background: linear-gradient(135deg, #140400 0%, #1c0700 100%); border-top: 1px solid rgba(255,69,0,0.2); border-bottom: 1px solid rgba(255,69,0,0.2); }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .hero-wrap { grid-template-columns: 1fr; }
  .form-card { max-width: 480px; }
  .insurance-split { grid-template-columns: 1fr; gap: 40px; }
  .contact-split { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .alert-72-inner { flex-direction: column; gap: 14px; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .hero-wrap { padding: 70px 20px 60px; }
  .hero h1 { font-size: 3rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .img-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .ins-brands { grid-template-columns: repeat(2,1fr); }
  .trust-inner { gap: 18px; }
  .provinces-grid { grid-template-columns: repeat(2,1fr); }
  .province-card { height: 160px; }
}

/* ─── BOTONES FLOTANTES (llamada + WhatsApp) ─── */
.float-buttons {
  position: fixed;
  right: 20px;
  bottom: 90px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 500;
}
.float-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  text-decoration: none;
  color: #fff;
  font-size: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-btn:hover { transform: scale(1.12); }
.float-btn svg { flex-shrink: 0; }
.float-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
  font-size: 9px;
  line-height: 1;
}
.float-call {
  background: var(--fire);
  box-shadow: 0 4px 20px rgba(255,69,0,0.4);
}
.float-call:hover { box-shadow: 0 6px 28px rgba(255,69,0,0.55); }
.float-wa {
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37,211,102,0.38);
}
.float-wa:hover { box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

/* ─── BARRA STICKY MÓVIL ─── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 600;
  height: 58px;
  grid-template-columns: 1fr 1fr;
}
.mobile-cta-call, .mobile-cta-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.02em;
  font-family: 'DM Sans', sans-serif;
}
.mobile-cta-call { background: var(--fire); }
.mobile-cta-wa   { background: #25D366; }

/* ─── RESPONSIVE MOBILE ─── */
@media (max-width: 768px) {
  /* Barra móvil visible */
  .mobile-cta-bar { display: grid; }
  /* Ocultar botones flotantes en móvil (los reemplaza la barra) */
  .float-buttons { display: none; }
  /* Espacio para la barra inferior */
  body { padding-bottom: 58px; }
  /* Formulario: layout apilado */
  .city-main-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .insurance-split { grid-template-columns: 1fr !important; gap: 32px !important; }
  .contact-split { grid-template-columns: 1fr !important; gap: 32px !important; }
  /* Hero */
  .hero-wrap { grid-template-columns: 1fr; padding: 60px 20px 40px; gap: 32px; }
  .hero h1 { font-size: 2.8rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  /* Sidebar: no sticky en móvil */
  aside[style*="sticky"] { position: static !important; }
  /* Header compact */
  .header-wrap { padding: 0 16px; height: 60px; }
  .nav-links { display: none; }
  .logo-name { font-size: 1.2rem; }
  .cta-phone { font-size: 0.85rem; padding: 8px 14px; }
  /* Sections */
  .section { padding: 48px 20px; }
  .sec-title { font-size: 1.9rem; }
  .ins-title { font-size: 2rem; }
  /* Grid cards */
  .services-grid { grid-template-columns: 1fr; }
  .provinces-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .province-card { height: 150px; }
  .province-card-name { font-size: 1.2rem; }
  .testi-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .ins-brands { grid-template-columns: repeat(3,1fr); }
  /* Alert */
  .alert-72-inner { flex-direction: column; gap: 10px; }
  .alert-icon { font-size: 2.4rem; }
  /* Contact hero grid */
  #contacto > div > div { grid-template-columns: 1fr !important; }
  .contact-phone { font-size: 2.5rem; }
  /* Form card full width */
  .form-card { padding: 28px 20px; }
  /* City photo */
  .city-photo-wrap { height: 260px !important; }
  .city-photo-overlay { padding: 20px !important; }
  /* Trust bar */
  .trust-inner { gap: 12px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 0 4px; scrollbar-width: none; }
  .trust-inner::-webkit-scrollbar { display: none; }
  .trust-item { white-space: nowrap; flex-shrink: 0; font-size: 0.72rem; }
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  /* Img split */
  .img-split { grid-template-columns: 1fr; }
  /* Before/after section */
  .img-split img { height: 220px !important; }
}
@media (max-width: 480px) {
  .provinces-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .province-card { height: 130px; }
  .process-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
  .hero-kpis { gap: 20px; }
  .kpi-val { font-size: 1.7rem; }
}

/* ─── MENÚ HAMBURGUESA MÓVIL ─── */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 300;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.28s ease;
  transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Panel menú móvil */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(16px);
  z-index: 250;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 80px 32px 100px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-links { list-style: none; text-align: center; width: 100%; }
.mobile-menu-links li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-menu-links li:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.mobile-menu-links a {
  display: block;
  padding: 18px 0;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu-links a:hover,
.mobile-menu-links a:active { color: var(--fire); }
.mobile-menu-sep {
  width: 48px;
  height: 2px;
  background: var(--fire);
  margin: 28px auto;
  border-radius: 2px;
}
.mobile-menu-ctas { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 320px; }
.mobile-menu-ctas .btn { width: 100%; justify-content: center; font-size: 1rem; }
.mobile-menu-cities {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
  width: 100%;
  max-width: 380px;
}
.mobile-menu-cities a {
  background: rgba(255,69,0,0.08);
  border: 1px solid rgba(255,69,0,0.2);
  border-radius: 6px;
  padding: 8px 4px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(242,237,228,0.75);
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-cities a:hover { background: rgba(255,69,0,0.2); color: #fff; }

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-links { display: none !important; }
  .cta-phone { display: none; } /* En móvil la barra inferior ya tiene el teléfono */
}

/* ─── BLOG ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--ash);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform 0.22s, border-color 0.22s;
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(255,69,0,0.3); }
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.blog-card-body { padding: 24px 22px; }
.blog-card-cat {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 8px;
}
.blog-card-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
}
.blog-card-excerpt {
  font-size: 0.84rem;
  color: rgba(242,237,228,0.6);
  line-height: 1.65;
  margin-bottom: 14px;
}
.blog-card-meta {
  font-size: 0.72rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-card-meta::before { content: '📅'; font-size: 0.7rem; }

/* Artículo individual */
.article-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 28px 80px;
}
.article-hero-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin-bottom: 40px;
}
.article-cat {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 12px;
}
.article-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 0.95;
  margin-bottom: 18px;
}
.article-meta {
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.article-body h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 40px 0 14px;
}
.article-body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ember);
  margin: 28px 0 10px;
}
.article-body p {
  font-size: 0.97rem;
  color: rgba(242,237,228,0.75);
  line-height: 1.85;
  margin-bottom: 20px;
}
.article-body ul, .article-body ol {
  margin: 0 0 22px 20px;
  color: rgba(242,237,228,0.75);
  font-size: 0.95rem;
  line-height: 1.8;
}
.article-body strong { color: var(--light); }
.article-body .highlight-box {
  background: rgba(255,69,0,0.08);
  border-left: 3px solid var(--fire);
  border-radius: 0 8px 8px 0;
  padding: 18px 20px;
  margin: 28px 0;
  font-size: 0.92rem;
  color: rgba(242,237,228,0.8);
  line-height: 1.7;
}
.article-cta {
  background: var(--ash);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  margin-top: 52px;
}
.article-cta-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.article-cta p { font-size: 0.9rem; color: rgba(242,237,228,0.65); margin-bottom: 20px; }

/* ─── PÁGINAS LEGALES ─── */
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 28px 80px;
}
.legal-wrap h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.6rem;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 8px;
}
.legal-updated {
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.legal-wrap h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--fire);
  margin: 36px 0 12px;
}
.legal-wrap p, .legal-wrap li {
  font-size: 0.9rem;
  color: rgba(242,237,228,0.7);
  line-height: 1.85;
  margin-bottom: 14px;
}
.legal-wrap ul { margin: 0 0 18px 20px; }
.legal-wrap a { color: var(--fire); text-decoration: none; }
.legal-wrap a:hover { text-decoration: underline; }

/* Banner cookies */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(18,18,18,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,69,0,0.25);
  padding: 18px 28px;
  z-index: 700;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(0);
  transition: transform 0.3s ease;
}
#cookie-banner.hidden { transform: translateY(100%); }
#cookie-banner p {
  font-size: 0.82rem;
  color: rgba(242,237,228,0.7);
  line-height: 1.55;
  flex: 1;
  min-width: 260px;
  margin: 0;
}
#cookie-banner a { color: var(--fire); text-decoration: none; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-ok {
  background: var(--fire);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 22px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-cookie-ok:hover { background: #d93800; }
.btn-cookie-info {
  background: transparent;
  color: rgba(242,237,228,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 10px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-cookie-info:hover { color: #fff; border-color: rgba(255,255,255,0.3); }

@media (max-width: 768px) {
  #cookie-banner { padding: 16px 18px 80px; }
  .article-hero-img { height: 220px; }
  .article-wrap { padding: 40px 20px 60px; }
  .blog-grid { grid-template-columns: 1fr; }
  .mobile-menu-cities { grid-template-columns: repeat(2,1fr); }
}

/* ─── SLIDER ANTES/DESPUÉS ─── */
.ad-slider { position: relative; }
.ad-slide { display: none; }
.ad-slide.active { display: block; }
.ad-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.ad-prev, .ad-next {
  background: rgba(255,69,0,0.15);
  border: 1px solid rgba(255,69,0,0.3);
  color: var(--fire);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.ad-prev:hover, .ad-next:hover { background: var(--fire); color: #fff; }
.ad-dots { display: flex; gap: 8px; }
.ad-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.ad-dot.active { background: var(--fire); transform: scale(1.3); }
