*{ box-sizing:border-box; }

:root{
  --red1:#7a1b12;
  --red2:#d2452d;
  --plate: rgba(10,10,10,.72);
  --text:#f5f5f5;
}

body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background-image: url("images/fondo.png");
  background-size: cover;
  background-position: center;
  background-repeat:no-repeat;
  background-attachment: fixed;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  background: radial-gradient(circle at 30% 0%, rgba(255,255,255,.08), rgba(0,0,0,.35) 40%, rgba(0,0,0,.60));
  pointer-events:none;
  z-index:0;
}

header, main, footer{ position:relative; z-index:1; }

.page{
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding-bottom: 40px;
}

/* =========================
   METAL TEXT
   ========================= */
.metal-silver{
  background: linear-gradient(180deg,#ffffff 0%,#d8d8d8 25%,#f7f7f7 50%,#bdbdbd 80%,#ffffff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
  text-shadow: 0 2px 12px rgba(0,0,0,.55), 0 1px 0 rgba(255,255,255,.08);
}
.metal-gold{
  background: linear-gradient(180deg,#fff2c6 0%,#d7b25d 22%,#fff2c6 52%,#b88a2c 78%,#fff2c6 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
  text-shadow: 0 2px 14px rgba(0,0,0,.60), 0 1px 0 rgba(255,255,255,.08);
  letter-spacing: 1px;
}

/* =========================
   HEADER (DESKTOP)
   ========================= */
.header-banner{
  width:100%;
  position:relative;
  z-index:50;
  height:92px;
  background:
    linear-gradient(180deg, rgba(45,45,45,.55), rgba(10,10,10,.85)),
    radial-gradient(circle at 40% 0%, rgba(255,255,255,.10), rgba(0,0,0,0) 60%);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.header-inner{
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 0 16px;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  position: relative;
}

.header-left{ display:flex; align-items:center; }

/* Logo flotante desktop */
.header-logo{
  position:absolute;
  left:-60px;
  top:50%;
  transform: translateY(-50%);
  display:flex;
  align-items:center;
  gap:12px;
  z-index:100;
}
.header-logo img{
  height:130px;
  width:auto;
  display:block;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.55));
}
.logo-text{
  display:flex;              /* ✅ SIEMPRE visible */
  flex-direction:column;
  line-height:1;
}
.logo-top{
  font-size:18px;
  letter-spacing:3px;
  font-weight:800;
  color:#eaeaea;
}
.logo-bottom{
  font-size:13px;
  letter-spacing:2px;
  color:#cfcfcf;
  font-weight:700;
}

/* Menu desktop */
.header-menu{
  margin-left: 170px;
  display:flex;
  align-items:center;
  gap:10px;
  letter-spacing:1.5px;
  font-weight:700;
  opacity:.95;
}
.header-menu a{
  color:#f0f0f0;
  text-decoration:none;
  font-size:12px;
}
.header-menu a:hover{ text-decoration:underline; }
.sep{ opacity:.45; }

/* Actions desktop */
.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.header-phone{
  color:#fff;
  text-decoration:none;
  font-weight:900;
  font-size:13px;
  padding:8px 10px;
  border-radius:8px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.lang{
  border:1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.25);
  color:#fff;
  padding:8px 10px;
  border-radius:10px;
  cursor:pointer;
  font-weight:700;
}
.lang.is-active{ background: rgba(255,255,255,0.16); }

.header-cta{
  background: linear-gradient(135deg, #6f1a12, #d2452d);
  color:#fff;
  text-decoration:none;
  padding:10px 14px;
  border-radius:6px;
  font-weight:900;
  font-size:12px;
  border:1px solid rgba(255,255,255,.14);
  white-space:nowrap;
}

.header-redline{
  height:4px;
  background: linear-gradient(to right, var(--red1), var(--red2), var(--red1));
}

/* =========================
   HERO
   ========================= */
.hero{ padding:26px 0 12px; }

.heroPanel{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  min-height:340px;
}

.heroPanel__bg{
  position:absolute;
  inset:0;
  z-index:0;
}
.heroPanel__bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position: 90% 55%; /* ✅ más a la derecha (desktop también se ve bien) */
  display:block;
  filter: contrast(1.05) brightness(0.95);
}

.heroPanel::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background: linear-gradient(90deg,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.92) 28%,
    rgba(0,0,0,0.75) 46%,
    rgba(0,0,0,0.40) 62%,
    rgba(0,0,0,0.15) 74%,
    rgba(0,0,0,0.00) 88%
  );
}

.heroPanel::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  background: radial-gradient(85% 130% at 28% 35%,
    rgba(255,255,255,0.06) 0%,
    rgba(0,0,0,0.00) 55%,
    rgba(0,0,0,0.30) 100%
  );
  pointer-events:none;
}

.heroPanel__content{
  position:relative;
  z-index:3;
  max-width:52%;
  padding:28px 26px;
}

.brandStack{
  margin:0 0 12px;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:3px;
}

.brandTop{
  font-size:44px;
  font-weight:900;
  background: linear-gradient(180deg,#ffffff 0%,#d8d8d8 25%,#f7f7f7 50%,#bdbdbd 80%,#ffffff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow: 0 10px 18px rgba(0,0,0,0.55), 0 1px 0 rgba(255,255,255,0.10);
}

.brandBottom{
  margin-top:6px;
  font-size:30px;
  font-weight:900;
  letter-spacing:5px;
  background: linear-gradient(180deg,#fff2c6 0%,#d7b25d 22%,#fff2c6 52%,#b88a2c 78%,#fff2c6 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow: 0 10px 18px rgba(0,0,0,0.55), 0 1px 0 rgba(255,255,255,0.10);
}

.brandRed{
  color: var(--red2);
  -webkit-text-fill-color: var(--red2);
  background: none !important;
}

.heroTitle{
  margin:0 0 8px;
  font-size:36px;
  line-height:1.02;
  font-weight:800;
  text-shadow: 0 10px 18px rgba(0,0,0,0.55);
}
.heroTitle span{ display:block; }

.heroPanel .sub{ margin:0 0 12px; opacity:.9; }

.bilingualPill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(0,0,0,0.45);
  border:1px solid rgba(255,255,255,0.12);
  font-size:13px;
  margin:6px 0 14px;
}

.bilingualPill .flag{
  width:20px;
  height:14px;
  border-radius:3px;
  background: linear-gradient(
    to bottom,
    #b22234 0% 14%,
    #ffffff 14% 28%,
    #b22234 28% 42%,
    #ffffff 42% 56%,
    #b22234 56% 70%,
    #ffffff 70% 84%,
    #b22234 84% 100%
  );
  position:relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.bilingualPill .flag::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:40%;
  height:50%;
  background:#3c3b6e;
  border-top-left-radius:3px;
}

.heroPhone{
  font-size:28px;
  font-weight:800;
  letter-spacing:1px;
  margin:0 0 14px;
  text-shadow: 0 10px 18px rgba(0,0,0,0.55);
}

.hero__buttons{ display:flex; gap:12px; flex-wrap:wrap; }

.btn{
  display:inline-block;
  text-decoration:none;
  border-radius:8px;
  padding:12px 18px;
  font-weight:800;
  letter-spacing:.5px;
  text-transform:uppercase;
  text-align:center;
}

.btn.primary{
  background: linear-gradient(135deg, #7a1b12, #d2452d);
  border: 1px solid rgba(255,255,255,0.18);
  color:#fff;
  box-shadow: 0 6px 18px rgba(210,69,45,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
  text-shadow: 0 1px 2px rgba(0,0,0,0.55);
}
.btn.secondary{
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.22);
  color:#eaeaea;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 4px 10px rgba(0,0,0,0.35);
  text-shadow: 0 1px 2px rgba(0,0,0,0.55);
}

/* =========================
   STICKERS (DESKTOP)
   ========================= */
.sticker-es{
  position: fixed;
  top: 160px;
  z-index: 9999;
  pointer-events: none;
}
.sticker-es img{
  width: 220px;
  height:auto;
  display:block;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.65));
}
.sticker-left{ left:40px; }
.sticker-right{ right:40px; }

/* =========================
   SERVICES (CAROUSEL)
   ========================= */
.services-flyer{
  margin-top:22px;
  background: var(--plate);
  border: 1px solid rgba(255,255,255,.10);
  border-radius:16px;
  padding:22px 18px 26px;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.services-flyer .section-head{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  margin-bottom:22px;
}
.services-flyer .section-head h2{
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing:1.4px;
  margin:0;
  text-transform:uppercase;
  text-shadow: 0 10px 22px rgba(0,0,0,.55);
}
.services-flyer .line-red{
  width: min(520px, 88%);
  height:4px;
  border-radius:999px;
  opacity:.95;
  background: linear-gradient(90deg, rgba(224,74,53,0), rgba(224,74,53,.95), rgba(224,74,53,0));
  box-shadow: 0 10px 24px rgba(224,74,53,.16);
}

.services-wrapper{ position:relative; display:flex; align-items:center; }

.arrow{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(10,10,10,.60);
  color:#fff;
  cursor:pointer;
  z-index:10;
  font-size:22px;
  display:grid;
  place-items:center;
  box-shadow: 0 14px 30px rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
}
.arrow:hover{ background: rgba(255,255,255,.10); }
.arrow-left{ left:-14px; }
.arrow-right{ right:-14px; }

.services-track{
  display:flex;
  gap:18px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:12px 8px 6px;
  scroll-snap-type:x mandatory;
}
.services-track::-webkit-scrollbar{ display:none; }
.services-track{ scrollbar-width:none; }

.flyer-card{
  width:240px;
  flex:0 0 auto;
  border-radius:16px;
  overflow:hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(0,0,0,.22)), rgba(22,24,26,.72);
  border:1px solid rgba(255,255,255,.16);
  box-shadow: 0 18px 38px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.10);
  scroll-snap-align:start;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.flyer-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.12);
  filter: brightness(1.03);
}

.card-img{ height:150px; position:relative; overflow:hidden; }
.card-img img{ width:100%; height:100%; object-fit:cover; display:block; filter: contrast(1.04) saturate(1.05); }
.card-img::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 52%, rgba(0,0,0,.62) 100%);
}

.card-foot{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(0,0,0,.40));
  border-top:1px solid rgba(255,255,255,.14);
}
.card-icon{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 10px 22px rgba(0,0,0,.35);
  flex:0 0 auto;
  font-size:20px;
}
.card-title{
  font-weight:900;
  letter-spacing:.6px;
  font-size:14px;
  text-transform:uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}

/* =========================
   PANELS BASE
   ========================= */
.info-stack{ margin-top:18px; display:grid; gap:16px; }

.flyer-panel{
  background: var(--plate);
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  padding:18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.panel-head{ margin-bottom:14px; text-align:center; }
.panel-head h2{
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing:1.2px;
  margin:0;
  text-shadow: 0 10px 22px rgba(0,0,0,.55);
}
.panel-muted{ margin:6px 0 0; opacity:.85; }

.panel-grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap:16px;
  align-items:stretch;
}

.panel-box{
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.38);
  padding:16px;
}

.panel-media{ padding:0; min-height:220px; overflow:hidden; }
.panel-media img{
  width:100%;
  height:100%;
  min-height:220px;
  object-fit:cover;
  display:block;
  filter: contrast(1.05) saturate(1.05);
}

.checklist{
  list-style:none;
  padding:0;
  margin:0 0 12px;
  display:grid;
  gap:12px;
}
.checklist li{
  position:relative;
  padding-left:36px;
  font-size:20px;
  font-weight:700;
  line-height:1.25;
  opacity:.98;
}
.checklist li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:2px;
  width:22px;
  height:22px;
  display:grid;
  place-items:center;
  border-radius:6px;
  background: rgba(214,179,106,.18);
  border: 1px solid rgba(214,179,106,.35);
  color:#d6b36a;
  font-weight:900;
  box-shadow: 0 8px 18px rgba(0,0,0,.45);
}

.fineprint{
  font-size:12px;
  opacity:.75;
  border-top:1px solid rgba(255,255,255,.10);
  padding-top:10px;
}

/* =========================
   ACCIDENT SECTION
   ========================= */
.accident-section{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  margin: 22px 0;
  min-height:280px;
}
.accident-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center right;
  filter: saturate(1.05) contrast(1.05);
}
.accident-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.62) 55%, rgba(0,0,0,.25) 100%),
    radial-gradient(circle at 20% 40%, rgba(214,179,106,.15), rgba(0,0,0,0) 60%);
}
.accident-content{
  position:relative;
  z-index:2;
  padding:28px 30px;
  max-width:640px;
}
.accident-title{
  margin:0;
  text-align:left;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing:1.2px;
  text-shadow: 0 10px 22px rgba(0,0,0,.55);
}
.accident-sub{
  font-size:16px;
  opacity:.96;
  margin:10px 0 14px;
}
.accident-points{
  list-style:none;
  padding:0;
  margin:0 0 18px;
  display:grid;
  gap:9px;
}
.accident-points li{
  position:relative;
  padding-left:28px;
  font-weight:600;
}
.accident-points li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:0;
  color:#e6c27a;
  font-weight:900;
}
.btn-urgent{
  display:inline-block;
  margin-bottom:12px;
  padding:14px 24px;
  border-radius:14px;
  background: linear-gradient(180deg,#e04a35,#a32a1f);
  color:#fff;
  text-decoration:none;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
  box-shadow: 0 16px 34px rgba(0,0,0,.55);
  transition: transform .15s ease, filter .15s ease;
}
.btn-urgent:hover{ transform: translateY(-1px); filter: brightness(1.05); }
.accident-fine{
  font-size:12px;
  opacity:.75;
  border-top:1px solid rgba(255,255,255,.15);
  padding-top:10px;
}

/* =========================
   ESTIMATE FORM
   ========================= */
.estimate-form{
  margin-top:10px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.28);
  padding:18px;
  box-shadow: 0 14px 28px rgba(0,0,0,.25);
}
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-bottom:12px;
}
.field{ display:grid; gap:6px; }
.field-label{
  font-size:12px;
  opacity:.82;
  letter-spacing:.6px;
  text-transform:uppercase;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.34);
  color:#fff;
  outline:none;
  transition: border-color .15s ease, transform .12s ease, box-shadow .15s ease, background .15s ease;
}
.estimate-form input::placeholder,
.estimate-form textarea::placeholder{ opacity:.55; }

.estimate-form select{
  appearance:none;
  -webkit-appearance:none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,.75) 50%),
    linear-gradient(135deg, rgba(255,255,255,.75) 50%, transparent 50%);
  background-position: calc(100% - 18px) 52%, calc(100% - 12px) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat:no-repeat;
  padding-right:34px;
}

.estimate-form textarea{ min-height:120px; resize:vertical; }

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus{
  border-color: rgba(214,179,106,.55);
  box-shadow: 0 0 0 3px rgba(214,179,106,.18);
  background: rgba(0,0,0,.40);
  transform: translateY(-1px);
}

.form-actions{ margin-top:12px; display:grid; gap:10px; }
.form-note{ font-size:12px; opacity:.72; line-height:1.35; }

.btn-submit{
  width:100%;
  padding:14px 18px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  cursor:pointer;
  font-weight:900;
  letter-spacing:1.1px;
  text-transform:uppercase;
  color:#fff;
  background:
    radial-gradient(circle at 20% 15%, rgba(255,255,255,.18), rgba(255,255,255,0) 35%),
    linear-gradient(180deg, #e04a35 0%, #a32a1f 100%);
  box-shadow: 0 18px 34px rgba(0,0,0,.50), inset 0 1px 0 rgba(255,255,255,.12);
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}
.btn-submit:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 22px 40px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.14);
}

.form-status{
  margin-top:10px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.28);
  font-size:13px;
  line-height:1.35;
  opacity:.95;
}
.form-status.is-loading{ opacity:.85; }
.form-status.is-success{ border-color: rgba(60,200,120,.35); background: rgba(60,200,120,.10); }
.form-status.is-error{ border-color: rgba(224,74,53,.45); background: rgba(224,74,53,.12); }

/* =========================
   LOCATION
   ========================= */
#location{ display:block; position:relative; margin-top:24px; }
#location .section-head{ text-align:center; margin-bottom:14px; }
#location .section-head h2{
  margin:0;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing:1.2px;
  text-shadow: 0 10px 22px rgba(0,0,0,.55);
}
#location .section-head p{ margin-top:6px; opacity:.85; }

#location .branch__switch{
  margin: 0 auto 16px;
  display:inline-flex;
  gap:8px;
  padding:6px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
#location .branch__btn{
  border:none;
  background:transparent;
  color:#fff;
  padding:10px 16px;
  border-radius:999px;
  cursor:pointer;
  opacity:.85;
  font-weight:900;
  letter-spacing:.3px;
  transition: background .15s ease, opacity .15s ease;
}
#location .branch__btn:hover{ opacity:1; background: rgba(255,255,255,.08); }
#location .branch__btn.is-active{ opacity:1; background: rgba(255,255,255,.14); }

#location .location-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:16px;
  align-items:stretch;
}
#location .map{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}
#location .map iframe{
  display:block;
  width:100%;
  height:420px;
  border:0;
}
#location .location__info{
  max-width:520px;
  margin:0 auto;
  text-align:center;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.30);
  padding:16px;
  box-shadow: 0 16px 34px rgba(0,0,0,.35);
}
#location .location__info h3{ margin:0 0 6px; font-size:18px; font-weight:900; }
#location .location__info p{ margin:0 0 8px; opacity:.88; }
#location .location__info a{ color:#fff; text-decoration:none; font-weight:900; }
#location .location__info a:hover{ text-decoration:underline; }

/* =========================
   GALLERY
   ========================= */
.gallery .section-head{ text-align:center; margin-bottom:14px; }
.gallery .section-head h2{ font-size: clamp(28px, 3vw, 42px); }

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.gallery-grid img{
  width:100%;
  aspect-ratio: 4 / 3;
  object-fit:cover;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  cursor:pointer;
}
.gallery-grid img:hover{
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 44px rgba(0,0,0,.45);
  filter: brightness(1.05);
}

/* =========================
   FOOTER
   ========================= */
.footer-wrap{ width:100%; }

.footer-flyer{
  width:100%;
  margin-top:18px;
  position:relative;
  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(45,45,45,.55), rgba(10,10,10,.85));
  overflow:hidden;
}
.footer-redline{ height:4px; background: linear-gradient(to right, var(--red1), var(--red2), var(--red1)); }

.footer-brand{
  position:absolute;
  left:50%;
  top:0px;
  transform: translateX(-180%);
  display:flex;
  align-items:center;
  gap:12px;
  z-index:5;
}
.footer-brand__logo{
  height:130px;
  width:auto;
  display:block;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.55));
}
.footer-brand__text{ display:flex; flex-direction:column; line-height:1; }
.footer-brand__top{ font-size:18px; letter-spacing:3px; font-weight:800; color:#eaeaea; }
.footer-brand__bottom{ font-size:13px; letter-spacing:2px; color:#cfcfcf; font-weight:700; }

.footer-inner{
  max-width:1200px;
  margin:0 auto;
  padding:18px 24px;
  min-height:110px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}
.footer-phone{
  color:#fff;
  text-decoration:none;
  font-weight:900;
  font-size:22px;
  letter-spacing:1px;
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}
.footer-right{
  position:absolute;
  right:24px;
  top:50%;
  transform: translateY(-50%);
  display:flex;
  align-items:center;
  gap:12px;
  white-space:nowrap;
}
.footer-link{
  color:#f0f0f0;
  text-decoration:none;
  font-weight:900;
  letter-spacing:1.2px;
  font-size:14px;
}
.footer-link:hover{ text-decoration:underline; }

/* =====================================================
   RESPONSIVE (LIMPIO, SIN DUPLICADOS)
   ===================================================== */

/* Tablet */
@media (max-width: 980px){
  .header-banner{ height:auto; }
  .header-inner{
    padding: 10px 12px;
    height:auto;
    flex-direction:column;
    align-items:center;
    gap:10px;
  }

  /* ✅ logo deja de ser absolute en tablet */
  .header-logo{
    position:static;
    transform:none;
    left:auto; top:auto;
    justify-content:center;
  }
  .header-left{ width:100%; justify-content:center; }
  .header-logo img{ height:70px; }

  .header-menu{
    margin-left:0;
    width:100%;
    justify-content:center;
  }

  .header-actions{
    width:100%;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
  }

  .header-cta{
    width:100%;
    max-width:360px;
    text-align:center;
  }

  .heroPanel__content{ max-width:100%; }
  .heroPanel{ min-height:380px; }

  .panel-grid{ grid-template-columns: 1fr; }
  .panel-media img{ min-height:180px; }

  .footer-brand{ left:50%; transform: translateX(-50%); top:8px; }
  .footer-brand__logo{ height:80px; }
  .footer-inner{
    padding-top:100px;
    min-height:auto;
    flex-direction:column;
    gap:10px;
    text-align:center;
  }
  .footer-right{ position:static; transform:none; justify-content:center; }
}

/* Mobile */
@media (max-width: 700px){
  .page{ width: min(1200px, 94vw); }
  .hero{ padding:16px 0 10px; }

  /* ✅ iPhone header EXACTO: tel izquierda / idiomas centro / CTA derecha */
  .header-actions{
    display:flex;
    width:100%;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    flex-wrap:nowrap;
  }
  .header-phone{
    margin-right:auto;
    font-size:13px;
    white-space:nowrap;
  }
  .lang{
    padding:7px 9px;
    font-size:12px;
    white-space:nowrap;
  }
  .header-cta{
    margin-left:auto;
    width:auto;
    max-width:none;
    padding:9px 10px;
    font-size:12px;
    white-space:nowrap;
  }
  .header-menu{
    width:100%;
    justify-content:center;
    order:3;
  }

  /* ✅ Ford más a la derecha en móvil */
  .heroPanel{ min-height:520px; }
  .heroPanel__bg img{ object-position: 98% 62%; } /* 🔥 derecha real */

  .heroPanel__content{ padding:18px 16px; }
  .brandTop{ font-size:34px; }
  .brandBottom{ font-size:24px; letter-spacing:4px; }
  .heroTitle{ font-size:30px; line-height:1.05; }
  .bilingualPill{ font-size:12px; gap:8px; padding:7px 10px; }
  .heroPhone{ font-size:24px; }

  .hero__buttons{ display:grid; gap:10px; }
  .btn{ width:100%; }

  .arrow{ display:none; }
  .flyer-card{ width:260px; }
  .card-img{ height:170px; }

  .form-row{ grid-template-columns:1fr; }
  .estimate-form input,
  .estimate-form select,
  .estimate-form textarea{ font-size:16px; } /* evita zoom iPhone */

  #location .map iframe{ height:280px; }

  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* Mobile pequeño */
@media (max-width: 520px){
  .gallery-grid{ grid-template-columns:1fr; gap:12px; }
}

/* ✅ Sticker: SOLO 1 en móvil, abajo derecha */
@media (max-width: 900px){
  .sticker-right{ display:none !important; }
  .sticker-left{
    left:auto !important;
    right:18px !important;
    top:auto !important;
    bottom:120px !important;
    transform:none !important;
  }
  .sticker-es img{ width:150px !important; }
}


/* =========================================
   FIX FINAL (PEGAR AL FINAL DEL CSS)
   - Arregla: Ford a la derecha + Header sin recortes
   ========================================= */

/* ---------- 1) HERO: mover la Ford a la DERECHA ---------- */
/* Nota: en cover, "object-position" depende de la foto.
   Estos valores mueven el encuadre para que la camioneta quede más a la derecha. */
.heroPanel__bg img,
.heroPanel__bg .hero-img{
  object-position: 65% 60% !important; /* <-- MÁS a la derecha (ajusta 60-75 si quieres) */
}

/* En pantallas más angostas normalmente ocupa un poquito más “right” */
@media (max-width: 980px){
  .heroPanel__bg img,
  .heroPanel__bg .hero-img{
    object-position: 72% 62% !important;
  }
}

/* En móvil aún más control para que no se vaya al centro */
@media (max-width: 700px){
  .heroPanel__bg img,
  .heroPanel__bg .hero-img{
    object-position: 58% 62% !important;
  }
}


/* ---------- 2) HEADER: evitar que se recorte el CTA ---------- */
/* Evita que cualquier cosa se “corte” visualmente */
.header-banner{
  overflow: visible !important;
}

/* Asegura que el contenedor no cause recorte lateral raro */
.header-inner{
  overflow: visible !important;
}

/* Deja que el bloque derecho (tel + idiomas + botón) pueda acomodarse */
.header-actions{
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
  row-gap: 8px !important;
  max-width: 560px;              /* evita que empuje/corte */
}

/* El CTA NO debe cortarse: que pueda bajar de línea si hace falta */
.header-cta{
  white-space: nowrap !important;
  flex: 0 1 auto !important;     /* permite encoger sin salirse */
  max-width: 260px;
}

/* En pantallas medianas, reduce un poco para que quepa */
@media (max-width: 1100px){
  .header-menu{
    margin-left: 140px !important; /* antes 170, esto da más espacio al botón */
  }

  .header-cta{
    font-size: 11px !important;
    padding: 10px 12px !important;
    max-width: 240px;
  }

  .header-actions{
    max-width: 460px;
  }
}

/* En “tablet/móvil”: forzar layout limpio (sin logo absoluto empujando) */
@media (max-width: 980px){
  .header-banner{
    height: auto !important;
  }

  .header-inner{
    flex-wrap: wrap !important;
    justify-content: center !important;
    padding: 10px 12px !important;
    gap: 10px !important;
  }

  /* Logo deja de ser absolute para que NO desacomode ni corte */
  .header-logo{
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    justify-content: center !important;
  }

  .header-left{
    width: 100% !important;
    justify-content: center !important;
  }

  .header-logo img{
    height: 70px !important;
  }

  .header-menu{
    margin-left: 0 !important;
    width: 100% !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    order: 3 !important;
  }

  .header-actions{
    width: 100% !important;
    justify-content: center !important;
    order: 2 !important;
    max-width: 100% !important;
  }

  /* Botón a ancho bonito sin cortarse */
  .header-cta{
    width: 100% !important;
    max-width: 360px !important;
    text-align: center !important;
  }
}

/* En móvil pequeño: evita cualquier overflow horizontal que “parece zoom” */
@media (max-width: 520px){
  html, body{
    overflow-x: hidden !important;
  }

  .header-phone{
    font-size: 13px !important;
  }
}

/* =========================================================
   HERO – ZOOM OUT (que se vea más la Ford) + mantenerla derecha
   PEGAR AL FINAL DEL CSS
   ========================================================= */

/* Base: un poco más “wide” (menos zoom) y cargada a la derecha */
.heroPanel__bg img{
  object-position: 88% 50% !important;   /* derecha */
  transform: scale(0.99) !important;     /* 👈 menos zoom (muestra más) */
  transform-origin: 88% 55% !important;  /* mantiene el foco a la derecha */
}

/* Tablet: normalmente ocupa un poquito más zoom para no verse “lejana”,
   pero todavía mostrando más que antes */
@media (max-width: 980px){
  .heroPanel__bg img{
    object-position: 90% 58% !important;
    transform: scale(0.94) !important;   /* ajusta 0.93–0.96 si quieres */
    transform-origin: 90% 58% !important;
  }
}

/* Móvil: muestra todavía más (menos recorte) */
@media (max-width: 700px){
  .heroPanel__bg img{
    object-position: 92% 62% !important;
    transform: scale(.70) !important;   /* 👈 más zoom-out en móvil */
    transform-origin: 92% 62% !important;
  }
}

/* Si notas “bordes” por el scale (depende de la foto),
   sube un poquito la escala (0.92 -> 0.94) */

/* HERO – mover la Ford ARRIBA en MÓVIL (sin zoom) */
@media (max-width: 700px){
  .heroPanel__bg img{
    object-position: 62% 50% !important;   /* deja tu X como ya la tienes */
    transform: translateY(-40px) !important; /* 👈 sube (prueba -30, -50, -70) */
  }
}

/* =========================================
   FIX FINAL — STICKER "HABLAMOS ESPAÑOL"
   SOLO MÓVIL (NO DESKTOP)
   ========================================= */

@media (hover: none) and (pointer: coarse){

  .sticker-es{
    position: fixed !important;
    right: 16px !important;     /* esquina derecha */
    left: auto !important;

    bottom: 50px !important;  /* 🔼 SUBE el sticker (ajusta 120–180) */
    top: auto !important;

    transform: none !important;
    z-index: 9999;
    pointer-events: none;
  }

  .sticker-es img{
    width: 120px !important;   /* 🔽 tamaño correcto en móvil */
    height: auto !important;
  }
}

/* =========================
   FIX FONDO EN MÓVIL (iOS/Android)
   - evita negro / recortes / zoom raro
   Pegar al FINAL del CSS
   ========================= */

/* Asegura altura completa */
html, body{
  min-height: 100%;
}

/* Si tu fondo está en body, esto lo hace estable */
body{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

/* En móvil: iOS odia background-attachment: fixed (causa negro/bugs) */
@media (max-width: 700px){
  body{
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center top !important;
  }

  /* Por si el fondo lo tienes en .page o ahí se está “cortando” */
  .page{
    background: transparent !important;
  }

  /* Por si estás usando un overlay/pseudo-element para el fondo */
  .page::before,
  body::before{
    background-attachment: scroll !important;
  }
}
/* FIX: Fondo sin “zoom” en MÓVIL */
@media (max-width: 700px){
  body{
    background-size: 100% auto !important;   /* menos zoom (muestra más) */
    background-position: center top !important;
    background-repeat: repeat-y !important; /* rellena hacia abajo sin “cortes” */
    background-attachment: scroll !important;
  }
}
