/* ============================================
   ELVIR DIPP SHIPPING — Arkansas → Honduras
   Paleta tomada del logo:
   navy  #00203F  |  naranja #FE630D
   ============================================ */
:root {
  --navy-900: #00203F;
  --navy-800: #0A3054;
  --navy-700: #14406B;
  --navy-100: #D7E3F0;
  --navy-50:  #EEF4FA;
  --orange-600: #FE630D;
  --orange-700: #D94F04; /* hover / texto sobre claro */
  --orange-100: #FFE3D1;
  --ink: #142433;
  --muted: #4A5C6E;
  --bg: #F7F9FC;
  --white: #FFFFFF;
  --radius: 14px;
  --shadow: 0 8px 28px rgba(0, 32, 63, .12);
  --font-head: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: var(--orange-700); text-decoration: none; }

.container { width: min(1140px, 92%); margin: 0 auto; }

h1, h2, h3 { font-family: var(--font-head); text-transform: uppercase; line-height: 1.08; letter-spacing: .5px; }
h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); color: var(--navy-900); }
.section { padding: 72px 0; }
.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-head .kicker {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; font-size: .95rem;
  color: var(--orange-700); margin-bottom: 6px;
}
.section-head p { color: var(--muted); margin-top: 10px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 32, 63, .1);
  box-shadow: 0 2px 12px rgba(0, 32, 63, .08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand img { height: 56px; width: auto; }
.main-nav { display: flex; gap: 26px; align-items: center; margin-left: auto; }
.main-nav a {
  color: var(--navy-800); font-weight: 600; font-size: .92rem;
}
.main-nav a:hover { color: var(--orange-700); }
.header-actions { display: flex; align-items: center; gap: 12px; margin-left: 20px; }
.lang-switch {
  color: var(--navy-800); font-weight: 600; font-size: .85rem;
  border: 1.5px solid rgba(0, 32, 63, .3); border-radius: 999px;
  padding: 4px 14px;
}
.lang-switch:hover { color: var(--orange-700); border-color: var(--orange-700); }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 8px; right: 8px; height: 2.5px;
  background: var(--navy-900); border-radius: 2px; transition: .25s;
}
.nav-toggle span { top: 50%; }
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92svh;
  display: grid; grid-template-columns: minmax(0, 1fr);
  align-items: center; overflow: hidden;
  background: var(--navy-900);
  padding: 130px 0 120px;
}
.hero video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: saturate(1.08) contrast(1.04);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(0,32,63,.88) 0%, rgba(0,32,63,.62) 45%, rgba(0,32,63,.25) 100%);
}
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 700px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-600); color: #fff;
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; font-size: .9rem;
  padding: 7px 18px; border-radius: 999px; margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.5rem, 6.5vw, 4.3rem);
  font-weight: 800; font-style: italic; color: #fff;
}
.hero h1 .accent { color: var(--orange-600); }
.hero .sub {
  margin: 16px 0 28px; font-size: clamp(1rem, 2vw, 1.2rem);
  color: #D8E4F0; max-width: 560px;
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; font-size: 1.05rem;
  padding: 14px 28px; border-radius: 10px; border: 0; cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-orange { background: var(--orange-600); color: #fff; }
.btn-wa { background: #25D366; color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.hero-note { margin-top: 14px; font-size: .9rem; color: #B9CBDD; }

/* Barra de datos al pie del hero */
.hero-stats {
  position: absolute; z-index: 3; left: 0; right: 0; bottom: 0;
  background: rgba(0, 20, 40, .55); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero-stats-inner {
  display: flex; justify-content: space-between; gap: 10px;
  padding: 14px 0; overflow-x: auto; scrollbar-width: none;
}
.hero-stats-inner::-webkit-scrollbar { display: none; }
.stat { text-align: center; color: #fff; min-width: 130px; }
.stat b {
  display: block; font-family: var(--font-head); font-size: 1.7rem;
  font-weight: 800; color: var(--orange-600); line-height: 1.1;
}
.stat span { font-size: .78rem; color: #C9D8E6; text-transform: uppercase; letter-spacing: 1px; }

/* ---------- Servicios ---------- */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px;
}
.card {
  /* franja naranja como capa de fondo: el border-radius la recorta limpio en las esquinas */
  background:
    linear-gradient(var(--orange-600), var(--orange-600)) top / 100% 4px no-repeat,
    var(--white);
  border-radius: var(--radius); padding: 28px 24px;
  box-shadow: 0 3px 14px rgba(0,32,63,.07);
  transition: transform .18s, box-shadow .18s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: var(--navy-50); margin-bottom: 16px; font-size: 1.6rem;
}
.card h3 { font-size: 1.25rem; color: var(--navy-900); margin-bottom: 8px; }
.card p { font-size: .93rem; color: var(--muted); }
.card.card-navy {
  background:
    linear-gradient(var(--orange-600), var(--orange-600)) top / 100% 4px no-repeat,
    var(--navy-900);
}
.card.card-navy h3 { color: #fff; }
.card.card-navy p { color: #C9D8E6; }
.card.card-navy .icon { background: rgba(255,255,255,.1); }
.tag-extra {
  display: inline-block; margin-top: 10px; background: var(--orange-100);
  color: var(--orange-700); font-weight: 700; font-size: .78rem;
  padding: 3px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: .5px;
}

/* ---------- Cobertura ---------- */
.coverage { background: var(--navy-900); color: #fff; }
.coverage h2 { color: #fff; }
.coverage .section-head p { color: #B9CBDD; }
.coverage-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 36px; align-items: start; }
.coverage-box {
  background: var(--navy-800); border-radius: var(--radius); padding: 28px;
  border: 1px solid rgba(255,255,255,.1);
}
.coverage-box h3 { color: var(--orange-600); font-size: 1.5rem; margin-bottom: 10px; }
.coverage-box p { color: #C9D8E6; font-size: .95rem; }
.depto-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; }
.chip {
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16);
  color: #E8EFF7; font-size: .85rem; padding: 6px 14px; border-radius: 999px;
}
.chip-18 {
  background: var(--orange-600); border-color: var(--orange-600); font-weight: 700;
}

/* ---------- Cómo funciona ---------- */
.steps { counter-reset: paso; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.step {
  background: var(--white); border-radius: var(--radius); padding: 30px 24px 26px;
  box-shadow: 0 3px 14px rgba(0,32,63,.07); position: relative;
}
.step::before {
  counter-increment: paso; content: counter(paso);
  position: absolute; top: -18px; left: 22px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange-600); color: #fff; font-family: var(--font-head);
  font-weight: 800; font-size: 1.3rem; display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(254,99,13,.4);
}
.step h3 { font-size: 1.15rem; color: var(--navy-900); margin: 8px 0 8px; }
.step p { font-size: .92rem; color: var(--muted); }

/* ---------- Qué enviamos ---------- */
.items-wrap { display: grid; grid-template-columns: 1.5fr 1fr; gap: 26px; }
.items-box { background: var(--white); border-radius: var(--radius); padding: 30px; box-shadow: 0 3px 14px rgba(0,32,63,.07); }
.items-box h3 { font-size: 1.35rem; color: var(--navy-900); margin-bottom: 14px; }
.items-list { display: flex; flex-wrap: wrap; gap: 9px; list-style: none; }
.items-list li {
  background: var(--navy-50); color: var(--navy-800); font-size: .88rem;
  padding: 7px 14px; border-radius: 999px; font-weight: 500;
}
.prohibited { background: #FFF4F0; border: 1.5px solid #F3C4B2; }
.prohibited h3 { color: #B33A10; }
.prohibited .items-list li { background: #FFE4DA; color: #8F2D0C; }
.prohibited .note { margin-top: 14px; font-size: .85rem; color: #8F2D0C; }

/* ---------- Contacto / Cotización ---------- */
.contact { background: linear-gradient(180deg, var(--bg) 0%, var(--navy-50) 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px; align-items: start; }
.contact-info h3 { font-size: 1.4rem; color: var(--navy-900); margin-bottom: 14px; }
.contact-line { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.contact-line .ico { font-size: 1.3rem; line-height: 1.4; }
.contact-line b { color: var(--navy-900); display: block; font-size: .95rem; }
.contact-line span, .contact-line a { font-size: .92rem; color: var(--muted); }
.quote-form {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow);
}
.quote-form h3 { font-size: 1.4rem; color: var(--navy-900); margin-bottom: 4px; }
.quote-form .form-sub { font-size: .9rem; color: var(--muted); margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy-800); margin-bottom: 5px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 13px; border: 1.5px solid #CBD8E4; border-radius: 9px;
  font-family: var(--font-body); font-size: .95rem; color: var(--ink); background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange-600); box-shadow: 0 0 0 3px rgba(254,99,13,.15);
}
.field textarea { resize: vertical; min-height: 84px; }
.check-line { display: flex; align-items: center; gap: 10px; margin: 4px 0 18px; font-size: .9rem; color: var(--muted); }
.check-line input { width: 18px; height: 18px; accent-color: var(--orange-600); }
.quote-form .btn { width: 100%; justify-content: center; }
.form-or {
  display: flex; align-items: center; gap: 12px; margin: 16px 0;
  color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: 1px;
}
.form-or::before, .form-or::after { content: ""; flex: 1; height: 1px; background: #CBD8E4; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #C9D8E6; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.site-footer img.footer-logo { height: 96px; width: auto; margin-bottom: 14px; }
.site-footer h4 {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1.5px;
  color: #fff; font-size: 1.05rem; margin-bottom: 12px;
}
.site-footer p, .site-footer a { font-size: .9rem; color: #C9D8E6; }
.site-footer a:hover { color: var(--orange-600); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 18px;
  display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap;
  font-size: .8rem; color: #8FA6BC;
}

/* ---------- Botón flotante WhatsApp ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.3); transition: transform .15s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .coverage-grid, .items-wrap, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding-bottom: 150px; }
}
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; top: 66px; right: 0; left: 0;
    background: #fff; flex-direction: column; gap: 0;
    border-bottom: 3px solid var(--orange-600);
    box-shadow: 0 14px 28px rgba(0, 32, 63, .18);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 14px 24px; width: 100%; border-top: 1px solid rgba(0, 32, 63, .08); }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats-inner { justify-content: flex-start; }
}

/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq-list details {
  background: #fff; border: 1px solid rgba(0,32,63,.1); border-radius: 14px;
  padding: 0; overflow: hidden; box-shadow: 0 4px 14px rgba(0,32,63,.06);
}
.faq-list summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; gap: 12px;
  padding: 18px 22px; font-weight: 600; color: var(--navy-900); font-size: 1.02rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before {
  content: "+"; flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  background: var(--orange-600); color: #fff; font-weight: 700;
  display: grid; place-items: center; transition: transform .25s;
}
.faq-list details[open] summary::before { transform: rotate(45deg); }
.faq-list details > p { padding: 0 22px 18px 60px; color: var(--ink-600); line-height: 1.6; }
.faq-list details > p a { color: var(--orange-700); font-weight: 600; }

/* ===== Página de ciudad ===== */
.hero-lite {
  background: linear-gradient(135deg, var(--navy-900), #00459c);
  color: #fff; padding: 150px 0 60px; text-align: left;
}
.hero-lite h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.05; text-transform: uppercase; }
.hero-lite h1 .accent { color: var(--orange-600); }
.hero-lite .sub { color: #D6E4F5; max-width: 640px; margin-top: 14px; font-size: 1.05rem; }
.city-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.city-links a {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.25);
  color: #E8EFF7; border-radius: 999px; padding: 6px 16px; font-size: .88rem; font-weight: 600;
}
.city-links a:hover { border-color: var(--orange-600); color: var(--orange-600); }

/* ===== Páginas legales ===== */
.legal-body { max-width: 780px; margin: 0 auto; }
.legal-body h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; color: var(--navy-900); text-transform: uppercase; margin: 34px 0 10px; }
.legal-body p, .legal-body li { color: var(--ink-600); line-height: 1.7; margin-bottom: 10px; }
.legal-body ul { padding-left: 22px; margin-bottom: 14px; }
.legal-body li { list-style: disc; }
.legal-body .legal-updated { font-size: .88rem; color: var(--ink-400, #7A8699); margin-top: -6px; margin-bottom: 24px; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 10px; }
.footer-legal a { color: #AFC3DA; font-size: .85rem; text-decoration: underline; }
.footer-legal a:hover { color: var(--orange-600); }
