/* =====================================================
   Bavaria Envíos — styles.css · v2.0
   Marca v2.0 · Mayo 2026
   Paleta: Marino #1B3A5C · Dorado #D4A853 · Crema #FAF7F0
   Fuentes: Montserrat (titulares) · Inter (cuerpo) · JetBrains Mono (códigos)
   ===================================================== */

:root {
  /* Primarios */
  --marino:       #1B3A5C;
  --marino-deep:  #0F2540;
  --dorado:       #D4A853;
  --dorado-soft:  #E8C97A;
  --dorado-text:  #76520F;

  /* Soporte */
  --crema:        #FAF7F0;
  --arena:        #E5E0D5;
  --niebla:       #5A6478;
  --white:        #FFFFFF;

  /* Semánticos */
  --verde:        #2D8B5E;
  --ambar:        #C58B26;
  --carmin:       #A4302F;

  /* Aliases legibles */
  --text:         var(--marino-deep);
  --muted:        var(--niebla);
  --bg:           var(--crema);
  --card:         #FFFFFF;
  --border:       var(--arena);

  --shadow:       0 4px 24px rgba(27, 58, 92, .08);
  --shadow-h:     0 14px 40px rgba(15, 37, 64, .18);
  --radius-sm:    10px;
  --radius-md:    14px;
  --radius-lg:    18px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--marino);
  letter-spacing: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}
p { overflow-wrap: break-word; word-wrap: break-word; }
a { color: inherit; text-decoration: none; }
img, svg, video { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.mono { font-family: 'JetBrains Mono', monospace; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--marino-deep);
  border: 2px solid var(--dorado);
  border-radius: var(--radius-sm);
  transition: top .15s ease;
}
.skip-link:focus { top: 10px; }
section[id] { scroll-margin-top: 120px; }
:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--dorado-soft);
  outline-offset: 3px;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-block;
  min-height: 44px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  letter-spacing: 0;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  text-align: center;
}
.btn-sm { padding: 10px 18px; font-size: 13.5px; }
.btn-full { width: 100%; }
.btn-gold { background: var(--dorado); color: var(--marino-deep); }
.btn-gold:hover { background: var(--dorado-soft); transform: translateY(-2px); box-shadow: var(--shadow-h); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.45); }
.btn-outline:hover { border-color: var(--dorado); color: var(--dorado); }
.btn-navy { background: var(--marino); color: #fff; }
.btn-navy:hover { background: var(--marino-deep); transform: translateY(-2px); box-shadow: var(--shadow-h); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(27, 58, 92, .97);
  backdrop-filter: blur(8px);
  z-index: 100;
  border-bottom: 1px solid rgba(212,168,83,.18);
}
.topbar {
  background: var(--marino-deep);
  color: rgba(255,255,255,.78);
  font-size: 13px;
  padding: 8px 0;
}
.topbar-inner {
  display: flex; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; align-items: center;
}
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.topbar-inner a,
.topbar-inner span { display: inline-flex; align-items: center; gap: 8px; }
.topbar-inner a { color: rgba(255,255,255,.78); transition: color .2s; }
.topbar-inner a:hover { color: var(--dorado); }
.topbar-inner .ico { width: 14px; height: 14px; color: var(--dorado); flex-shrink: 0; }

.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 48px; height: 48px; flex-shrink: 0; }
.brand-text {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0;
}
.brand-text small {
  display: block;
  color: var(--dorado);
  font-size: 10px;
  letter-spacing: 0;
  font-weight: 700;
  margin-top: 5px;
}
.nav { display: flex; align-items: center; gap: clamp(12px, 1.5vw, 28px); }
.nav a {
  color: rgba(255,255,255,.88);
  font-weight: 600;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  transition: color .2s;
}
.nav a:hover { color: var(--dorado); }
.site-lang-picker { display: inline-flex; align-items: center; flex-shrink: 0; margin-left: 12px; }
#siteLanguage {
  width: 58px;
  min-height: 38px;
  padding: 7px 22px 7px 8px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
#siteLanguage option { color: var(--marino); background: #fff; }
#siteLanguage:hover { border-color: var(--dorado); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none; border: 0;
  color: #fff; font-size: 28px;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 160px 0 80px;
  overflow: hidden;
  background:
    /* Gradient horizontal: oscuro a la izquierda (donde está el texto), se transparenta a la derecha para que se vea la foto */
    linear-gradient(90deg, rgba(15,37,64,.96) 0%, rgba(15,37,64,.88) 35%, rgba(15,37,64,.55) 70%, rgba(15,37,64,.35) 100%),
    url('./assets/hero.webp') center/cover no-repeat,
    var(--marino-deep);
}
/* Header + Hero comparten el mismo borde izquierdo:
   contenedor full-width con padding lateral escalable */
.site-header .container,
.hero > .container {
  max-width: 100%;
  padding-left: clamp(20px, 4vw, 56px);
  padding-right: clamp(20px, 4vw, 56px);
}
.hero-content {
  max-width: 640px;
  width: 100%;
  position: relative;
  z-index: 2;
  margin-right: auto; /* ancla a la izquierda */
  text-align: left;
}
.badge {
  display: inline-block;
  background: rgba(212, 168, 83, .18);
  color: var(--dorado);
  padding: 7px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13.5px;
  border: 1px solid rgba(212, 168, 83, .4);
  margin-bottom: 26px;
}
.hero h1 {
  font-size: 4.25rem;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.08;
  letter-spacing: 0;
}
.gold { color: var(--dorado); }
.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 36px;
  max-width: 620px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.trust {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 16px 18px;
  backdrop-filter: blur(8px);
  transition: background .25s ease, border-color .25s ease;
}
.trust:hover { background: rgba(255,255,255,.09); border-color: rgba(212,168,83,.4); }
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212,168,83,.18);
  border: 1px solid rgba(212,168,83,.4);
  color: var(--dorado);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 22px; height: 22px; }
.trust-text { display: flex; flex-direction: column; min-width: 0; }
.trust strong {
  display: block;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  margin-bottom: 2px;
}
.trust span { color: rgba(255,255,255,.65); font-size: 13px; }

/* ---------- Section heads ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.eyebrow {
  color: var(--dorado-text);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}
.gold-eyebrow { color: var(--dorado); }
.section-head h2 { font-size: 2.8rem; margin: 10px 0 14px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ---------- Servicios ---------- */
.services { padding: 100px 0; background: #fff; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-h);
  border-color: var(--dorado-soft);
}
.card-media { display: block; width: 100%; height: 210px; overflow: hidden; }
.card-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.card-body { padding: 28px 26px; }
.card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--marino);
}
.card-body p { color: var(--muted); margin-bottom: 18px; font-size: .98rem; }
.card-body ul { list-style: none; }
.card-body li {
  padding-left: 24px;
  position: relative;
  font-size: .94rem;
  margin-bottom: 8px;
  color: var(--text);
}
.card-body li::before {
  content: "✓";
  color: var(--dorado);
  position: absolute;
  left: 0;
  font-weight: 800;
}

/* ---------- Nosotros ---------- */
.about { padding: 100px 0; background: var(--crema); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.about-copy h2 {
  font-size: 2.6rem;
  margin: 12px 0 18px;
}
.about-copy p { color: var(--muted); margin-bottom: 24px; font-size: 1.05rem; }
.check-list { list-style: none; margin-bottom: 30px; }
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--text);
}
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 2px;
  width: 20px; height: 20px;
  background: var(--dorado); color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 800;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--marino);
  margin-bottom: 4px;
  letter-spacing: 0;
}
.stat span { color: var(--muted); font-size: .88rem; }

/* ---------- Contacto ---------- */
.contact {
  padding: 100px 0;
  background: var(--marino);
  color: #fff;
  position: relative;
}
.contact::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 0% 0%, rgba(212,168,83,.12), transparent 60%),
    radial-gradient(60% 60% at 100% 100%, rgba(212,168,83,.08), transparent 60%);
  pointer-events: none;
}
.contact > .container { position: relative; }
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-copy h2 {
  color: #fff;
  font-size: 2.6rem;
  margin: 10px 0 16px;
}
.contact-copy p {
  color: rgba(255,255,255,.78);
  margin-bottom: 32px;
  font-size: 1.05rem;
}
.contact-copy p strong { color: var(--dorado); font-weight: 700; }
.contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ci-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(212,168,83,.16);
  border: 1px solid rgba(212,168,83,.35);
  color: var(--dorado);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 20px; height: 20px; }
.contact-info li > div { display: flex; flex-direction: column; min-width: 0; }
.contact-info strong {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  margin-bottom: 2px;
}
.contact-info a,
.contact-info span {
  color: rgba(255,255,255,.75);
  font-size: 14.5px;
  transition: color .2s;
}
.contact-info a:hover { color: var(--dorado); }

/* Formulario */
.quote-form {
  background: #fff;
  color: var(--text);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--marino);
  letter-spacing: 0;
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--arena);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--dorado);
  box-shadow: 0 0 0 3px rgba(212,168,83,.18);
}
.field textarea { resize: vertical; min-height: 100px; }
.form-foot {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 4px;
}
.form-foot a { color: var(--marino); font-weight: 600; text-decoration: underline; }
.form-foot a:hover { color: var(--dorado); }
.quote-result {
  background: rgba(45,139,94,.1);
  border: 1px solid rgba(45,139,94,.3);
  color: var(--verde);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  line-height: 1.5;
}
.quote-result.is-error {
  background: rgba(164,48,47,.08);
  border-color: rgba(164,48,47,.3);
  color: var(--carmin);
}
.quote-result.is-success {
  background: rgba(45,139,94,.1);
  border-color: rgba(45,139,94,.3);
  color: var(--verde);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--marino-deep);
  color: rgba(255,255,255,.72);
  padding: 72px 0 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}
.footer .muted { font-size: .92rem; margin-top: 14px; line-height: 1.7; color: rgba(255,255,255,.65); }
.footer .brand-text { color: #fff; }
.footer .brand-text small { color: var(--dorado); }
.links { list-style: none; }
.links li { padding: 5px 0; font-size: .92rem; }
.links a { transition: color .2s; }
.links a:hover { color: var(--dorado); }
.socials { display: flex; flex-direction: column; gap: 8px; font-size: .92rem; }
.socials a:hover { color: var(--dorado); }
.copyright {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.68);
}

/* ---------- WhatsApp Floating ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 58px; height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .5);
  z-index: 50;
  transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 32px; height: 32px; }

/* ---------- Price tags (servicios) ---------- */
.card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.card-head h3 { margin-bottom: 0; }
.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: rgba(212,168,83,.14);
  border: 1px solid rgba(212,168,83,.4);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.price-amount { font-weight: 700; font-size: 15px; color: var(--marino); }
.price-unit { font-size: 11.5px; color: var(--muted); font-weight: 600; }

/* ---------- Pasos / Cómo comprar ---------- */
.steps { padding: 100px 0; background: var(--crema); }
.steps-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.steps-intro h2 { font-size: 2.6rem; margin: 12px 0 16px; }
.steps-intro p { color: var(--muted); font-size: 1.05rem; margin-bottom: 28px; }
.steps-intro .btn { display: inline-flex; align-items: center; gap: 8px; }
.steps-intro .btn .ico { width: 18px; height: 18px; }
.steps-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.step:hover { transform: translateX(4px); box-shadow: var(--shadow-h); border-color: var(--dorado-soft); }
.step-num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--marino);
  color: var(--dorado);
  display: grid; place-items: center;
  font-size: 18px; font-weight: 700;
}
.step-body h3 { font-size: 1.2rem; margin-bottom: 6px; }
.step-body p { color: var(--muted); font-size: .97rem; }
.step-body a { color: var(--marino); font-weight: 600; text-decoration: underline; }
.step-body a:hover { color: var(--ambar); }

/* ---------- Direcciones / Casillero ---------- */
.addresses { padding: 100px 0; background: #fff; }
.addr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.addr-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.addr-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-h); }
.addr-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  color: #fff;
}
.addr-head--maritimo { background: linear-gradient(120deg, var(--marino), var(--marino-deep)); }
.addr-head--aereo { background: linear-gradient(120deg, #245d8a, var(--marino)); }
.addr-head-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(212,168,83,.2);
  border: 1px solid rgba(212,168,83,.45);
  color: var(--dorado);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.addr-head-icon svg { width: 26px; height: 26px; }
.addr-head-text { flex: 1; min-width: 0; }
.addr-kicker {
  display: block;
  color: var(--dorado);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}
.addr-head-text h3 { color: #fff; font-size: 1.5rem; margin: 2px 0 0; }
.price-tag--onhead { background: rgba(255,255,255,.12); border-color: rgba(212,168,83,.5); }
.price-tag--onhead .price-amount { color: #fff; }
.price-tag--onhead .price-unit { color: rgba(255,255,255,.7); }
.addr-list { list-style: none; padding: 8px 24px; flex: 1; }
.addr-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.addr-row:last-child { border-bottom: 0; }
.addr-label {
  flex-shrink: 0;
  width: 108px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0;
}
.addr-value { flex: 1; min-width: 0; font-size: 15px; color: var(--text); word-break: break-word; }
.addr-value.mono { font-weight: 500; color: var(--marino); }
.addr-row--tpl {
  background: rgba(212,168,83,.07);
  margin: 0 -12px;
  padding: 11px 12px;
  border-radius: 8px;
}
.addr-row--tpl .addr-value strong { color: var(--marino); }
.hl-gold { color: var(--dorado-text) !important; }
.copy-btn {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--crema);
  color: var(--marino);
  font-size: 15px;
  cursor: pointer;
  transition: all .2s;
  line-height: 1;
}
.copy-btn:hover { background: var(--dorado); border-color: var(--dorado); color: #fff; }
.copy-btn.copied { background: var(--verde); border-color: var(--verde); color: #fff; }
.addr-example {
  margin: 2px 24px 12px;
  padding: 14px 16px;
  border: 1px solid rgba(212,168,83,.28);
  border-radius: 8px;
  background: rgba(212,168,83,.08);
}
.addr-example-title {
  display: block;
  margin-bottom: 8px;
  color: var(--marino);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}
.addr-example-lines {
  color: var(--marino);
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
  overflow-wrap: anywhere;
}
.copy-all-btn { margin: 8px 24px 24px; width: calc(100% - 48px); }
.addr-foot {
  text-align: center;
  margin-top: 28px;
  color: var(--muted);
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.addr-foot .ico { width: 18px; height: 18px; color: var(--dorado); flex-shrink: 0; }
.addr-foot strong { color: var(--marino); }

/* Botón de acceso a la plataforma (header) */
.nav-app { border-color: rgba(212,168,83,.6) !important; color: var(--dorado) !important; }
.nav-app:hover { background: var(--dorado); color: var(--marino-deep) !important; border-color: var(--dorado) !important; }

/* ---------- Responsive ---------- */
/* Colapsa la navegación antes para dar espacio a los botones extra */
@media (max-width: 1120px) {
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--marino);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px;
    gap: 6px;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav.open { display: flex; }
  .nav a { padding: 10px 0; }
  .nav .btn { width: 100%; margin-top: 4px; }
  .nav-app { text-align: center; }
  .site-lang-picker { margin-left: auto; margin-right: 8px; }
}

@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 36px; }
  .addr-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hide-sm { display: none; }
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--marino);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px;
    gap: 6px;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav.open { display: flex; }
  .nav a { padding: 10px 0; }
  .topbar-inner { justify-content: center; font-size: 11.5px; }
  .hero {
    padding: 130px 0 64px;
    /* En móvil oscurecemos parejo para que el texto se lea sobre toda la foto */
    background:
      linear-gradient(180deg, rgba(15,37,64,.90) 0%, rgba(15,37,64,.78) 100%),
      url('./assets/hero.webp') center/cover no-repeat,
      var(--marino-deep);
  }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: 2.75rem; }
  .hero p { font-size: 1.05rem; }
  .section-head h2,
  .about-copy h2,
  .contact-copy h2,
  .steps-intro h2 { font-size: 2.2rem; }
  .grid-4 { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .services, .about, .contact, .steps, .addresses { padding: 70px 0; }
  .section-head { margin-bottom: 40px; }
  .hero-cta .btn { width: 100%; }
  .quote-form { padding: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn { padding: 12px 22px; font-size: 14.5px; }
  .trust-badges { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat { padding: 22px 14px; }
  .stat strong { font-size: 1.7rem; }
  .field-row { grid-template-columns: 1fr; }
  .contact-info li { gap: 10px; }
  .addr-label { width: 88px; font-size: 11px; }
  .addr-value { font-size: 14px; }
  .addr-card-head { flex-wrap: wrap; gap: 12px; }
  .price-tag--onhead { order: 3; }
  .card-head { flex-wrap: wrap; }
  .hero h1 { font-size: 2.25rem; }
  .section-head h2,
  .about-copy h2,
  .contact-copy h2,
  .steps-intro h2 { font-size: 1.85rem; }
}

@media (max-width: 420px) {
  .brand-text { font-size: 17px; }
  .brand-text small { font-size: 9px; letter-spacing: 0; }
  .nav-inner { padding: 10px 16px; }
  .topbar-inner { gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
