:root {
  --navy:       #112240;
  --navy-mid:   #1a3560;
  --navy-light: #1e4080;
  --gold:       #c9a84c;
  --gold-light: #e2c47a;
  --gold-dark:  #9e7d2e;
  --cream:      #f8f5ef;
  --white:      #ffffff;
  --gray:       #6b7280;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%; /* evita que iOS agrande texto automáticamente */
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
}

/* ─── NAVBAR ─────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(17,34,64,.12); }

.nav-inner {
  max-width: 1280px; margin: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 72px;
}

.nav-logo img { height: 48px; width: auto; max-width: 150px; display: block; }

.nav-links {
  display: flex; gap: 2rem; list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: .875rem; font-weight: 500;
  color: var(--navy); letter-spacing: .04em;
  text-transform: uppercase;
  position: relative; padding-bottom: 2px;
  transition: color .25s;
}
.nav-links a::after {
  content:''; position:absolute; bottom:0; left:0;
  width:0; height:2px;
  background: var(--gold);
  transition: width .3s;
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-links a:hover::after { width:100%; }

.nav-cta {
  background: var(--navy);
  color: var(--gold-light) !important;
  padding: .5rem 1.4rem;
  border-radius: 2px;
  font-size: .8rem !important;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .25s !important;
}
.nav-cta::after { display:none !important; }
.nav-cta:hover { background: var(--gold-dark) !important; color: var(--white) !important; }

/* Hamburger */
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; }
.hamburger span { display:block; width:24px; height:2px; background:var(--navy); transition:.3s; }

/* ─── LANGUAGE SWITCHER ──────────────────────────────── */
.lang-switcher {
  display: flex; align-items: center; gap: .2rem;
  margin-left: .5rem;
}
.lang-btn {
  background: none;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  padding: .18rem .28rem;
  font-size: 1.1rem;
  line-height: 1.3;
  opacity: .45;
  transition: opacity .2s, border-color .2s, background .2s;
  min-width: 36px; min-height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.lang-btn:hover { opacity: .85; border-color: rgba(17,34,64,.15); background: rgba(17,34,64,.05); }
.lang-btn.active { opacity: 1; border-color: var(--gold); background: rgba(201,168,76,.1); }

/* Ocultar la barra nativa de Google Translate */
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover,
.goog-te-ftab-float,
.goog-te-menu-frame { display: none !important; }
.skiptranslate { display: none !important; }
body { top: 0 !important; }
#google_translate_element {
  position: absolute; left: -9999px;
  height: 1px; overflow: hidden;
  pointer-events: none; opacity: 0;
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}

.hero-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,168,76,.15);
  pointer-events: none;
}
.hero-ring-1 { width:700px; height:700px; top:-200px; right:-150px; }
.hero-ring-2 { width:500px; height:500px; top:-80px; right:50px; border-color: rgba(201,168,76,.08); }
.hero-ring-3 { width:900px; height:900px; bottom:-300px; left:-200px; border-color: rgba(201,168,76,.06); }

.hero-content {
  position: relative; z-index:2;
  max-width: 1280px; margin: auto;
  padding: 8rem 2rem 6rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap:.6rem;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-light); font-size:.75rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-badge-dot { width:6px; height:6px; border-radius:50%; background:var(--gold); }

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: var(--white); line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title span { color: var(--gold-light); font-style: italic; }

.hero-sub {
  color: rgba(255,255,255,.7); font-size: 1.05rem;
  line-height: 1.8; margin-bottom: 2.5rem; max-width: 480px;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy); font-weight: 600;
  padding: .85rem 2rem; border-radius: 2px;
  text-decoration: none; font-size: .9rem;
  letter-spacing:.04em; text-transform: uppercase;
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.35); }

.btn-outline {
  border: 1px solid rgba(255,255,255,.3); color: var(--white);
  padding: .85rem 2rem; border-radius: 2px;
  text-decoration: none; font-size: .9rem;
  letter-spacing:.04em; text-transform: uppercase;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,.08); }

/* hero statement */
.hero-statement {
  margin-top: 3.5rem;
  padding: 1.25rem 1.75rem;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 6px;
  border-left: 3px solid var(--gold);
}
.hero-statement-text {
  color: rgba(255,255,255,.72); font-size: .92rem; line-height: 1.7;
}
.hero-statement-text strong { color: var(--white); font-weight: 600; }

/* hero visual card */
.hero-visual {
  display: flex; flex-direction: column; gap: 1rem;
}
.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 8px; padding: 1.5rem 2rem;
  backdrop-filter: blur(10px);
  display: flex; align-items: center; gap: 1.2rem;
  transition: background .3s;
}
.hero-card:hover { background: rgba(255,255,255,.12); }
.hero-card-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(201,168,76,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-card-icon svg { width:24px; height:24px; }
.hero-card-title { color: var(--white); font-weight: 600; font-size: .95rem; }
.hero-card-desc { color: rgba(255,255,255,.5); font-size: .8rem; margin-top:.15rem; }

/* ─── DIVIDER ─────────────────────────────────────────── */
.gold-divider {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ─── SECTION WRAPPER ────────────────────────────────── */
.section { padding: 6rem 2rem; }
.section-inner { max-width: 1280px; margin: auto; }

.section-label {
  display: inline-flex; align-items: center; gap:.5rem;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 600; margin-bottom: .75rem;
}
.section-label::before {
  content:''; display:block; width:24px; height:1px; background: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--navy); line-height: 1.15; margin-bottom: 1rem;
}
.section-title span { color: var(--gold-dark); font-style: italic; }
.section-body { color: var(--gray); font-size: 1rem; line-height: 1.8; max-width: 560px; }

/* ─── SERVICIOS ──────────────────────────────────────── */
.services-section { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(17,34,64,.08);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content:''; position:absolute; bottom:0; left:0;
  width:0; height:3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transition: width .4s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(17,34,64,.1); border-color: rgba(201,168,76,.3); }
.service-card:hover::before { width: 100%; }

.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width:26px; height:26px; color: var(--gold-light); }

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600; color: var(--navy);
  margin-bottom: .5rem;
}
.service-desc { font-size: .85rem; color: var(--gray); line-height: 1.65; }

/* ─── COBERTURA ──────────────────────────────────────── */
.cobertura-grid {
  display: grid; grid-template-columns: 1fr 1.35fr;
  gap: 4rem; align-items: center; margin-top: 2rem;
}
.cobertura-left-content {
  display: flex; flex-direction: column; justify-content: center;
}
.cobertura-left-content .section-title { margin-bottom: 1.25rem; }
.cobertura-left-content .section-body { max-width: 100%; }

/* ─── COVERAGE SEARCH WIDGET ─────────────────────────── */
.coverage-search-wrap {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative; overflow: hidden;
  border: 1px solid rgba(201,168,76,.15);
}
.coverage-search-wrap::before {
  content:''; position:absolute; inset:0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.search-heading {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white); font-size: 1.75rem; margin-bottom: .4rem;
  position: relative; z-index: 1;
}
.search-heading span { color: var(--gold-light); font-style: italic; }
.search-subheading {
  color: rgba(255,255,255,.5); font-size: .85rem;
  margin-bottom: 1.75rem; line-height: 1.55;
  position: relative; z-index: 1;
}

.search-input-group {
  display: flex; gap: .6rem;
  position: relative; z-index: 1;
}
.search-city-input {
  flex: 1; padding: .85rem 1.2rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 4px;
  color: var(--white); font-family: 'DM Sans', sans-serif;
  font-size: .9rem; outline: none;
  transition: border-color .25s, background .25s;
}
.search-city-input::placeholder { color: rgba(255,255,255,.3); }
.search-city-input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.11);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}

.search-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy); border: none; border-radius: 4px;
  padding: .85rem 1.4rem; font-weight: 600; font-size: .82rem;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  letter-spacing: .06em; text-transform: uppercase;
  display: flex; align-items: center; gap: .5rem;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.search-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,.4); }
.search-btn svg { width: 16px; height: 16px; }

.search-result {
  margin-top: 1.25rem; position: relative; z-index: 1;
  display: none;
}
.search-result.visible { display: block; }

.search-result-card {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 1.5rem; border-radius: 8px;
  animation: slideUp .35s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.search-result-success {
  background: rgba(37,107,61,.25);
  border: 1px solid rgba(45,155,80,.35);
}
.search-result-contact {
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
}
.search-result-unknown {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
}
.search-result-icon { font-size: 1.5rem; line-height: 1; flex-shrink: 0; margin-top: .1rem; }
.search-result-city {
  color: var(--white); font-weight: 600; font-size: .95rem; margin-bottom: .35rem;
}
.search-result-msg {
  color: rgba(255,255,255,.65); font-size: .84rem; line-height: 1.6;
}
.search-result-link {
  display: inline-flex; align-items: center; gap: .3rem;
  color: var(--gold-light); font-size: .8rem; font-weight: 600;
  text-decoration: none; margin-top: .6rem; letter-spacing: .04em;
  transition: color .2s;
}
.search-result-link:hover { color: var(--white); }

.search-popular {
  margin-top: 1.5rem; position: relative; z-index: 1;
}
.search-popular-label {
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: .65rem;
}
.search-chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.search-chip {
  background: rgba(255,255,255,.06); border: 1px solid rgba(201,168,76,.18);
  color: rgba(255,255,255,.5); font-size: .76rem; padding: .28rem .85rem;
  border-radius: 100px; cursor: pointer; transition: all .2s;
  font-family: 'DM Sans', sans-serif;
}
.search-chip:hover {
  background: rgba(201,168,76,.15); border-color: var(--gold);
  color: var(--gold-light);
}

/* ─── SERVICES EXPLORER ─────────────────────────────── */
.svc-header {
  text-align: center; margin-bottom: 3rem;
}
.svc-header .section-title { margin-bottom: .75rem; }

.services-explorer {
  display: grid;
  grid-template-columns: 380px 1fr;
  border: 1px solid rgba(17,34,64,.1);
  border-radius: 12px;
  overflow: hidden;
  min-height: 540px;
  box-shadow: 0 8px 40px rgba(17,34,64,.08);
}

/* LEFT: numbered list */
.svc-list {
  overflow-y: auto;
  border-right: 1px solid rgba(17,34,64,.09);
  background: var(--white);
}
.svc-list::-webkit-scrollbar { width: 4px; }
.svc-list::-webkit-scrollbar-track { background: transparent; }
.svc-list::-webkit-scrollbar-thumb { background: rgba(201,168,76,.3); border-radius: 2px; }

.svc-item {
  display: flex; align-items: center; gap: .85rem;
  padding: 1.05rem 1.5rem;
  cursor: pointer;
  border-bottom: 1px solid rgba(17,34,64,.06);
  position: relative;
  transition: background .2s;
  user-select: none;
}
.svc-item:last-child { border-bottom: none; }

.svc-item::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.svc-item:hover { background: rgba(201,168,76,.04); }
.svc-item.active { background: rgba(201,168,76,.07); }
.svc-item.active::before { transform: scaleY(1); }

.svc-item-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: .75rem; font-weight: 600; letter-spacing: .04em;
  color: var(--gold-dark); min-width: 22px; flex-shrink: 0;
}
.svc-item-name {
  flex: 1; font-size: .87rem; font-weight: 500;
  color: var(--navy); line-height: 1.35;
  transition: color .2s;
}
.svc-item.active .svc-item-name { font-weight: 600; }
.svc-item-arrow {
  font-size: .75rem; color: var(--gold);
  opacity: 0; transform: translateX(-4px);
  transition: opacity .2s, transform .2s;
  flex-shrink: 0;
}
.svc-item:hover .svc-item-arrow,
.svc-item.active .svc-item-arrow { opacity: 1; transform: translateX(0); }

/* RIGHT: detail panel */
.svc-detail {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 3.5rem 3rem;
}
.svc-detail::after {
  content: attr(data-num);
  position: absolute; right: -1.5rem; bottom: -2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13rem; font-weight: 600; line-height: 1;
  color: rgba(201,168,76,.06);
  pointer-events: none; user-select: none;
  letter-spacing: -.02em;
}
.svc-detail::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.svc-detail-inner {
  position: relative; z-index: 1;
  max-width: 480px;
}
@keyframes svcFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.svc-detail-inner.animating { animation: svcFadeIn .35s ease forwards; }

.svc-detail-icon {
  width: 68px; height: 68px;
  background: rgba(201,168,76,.14);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.75rem;
}
.svc-detail-icon svg { width: 34px; height: 34px; }

.svc-detail-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem; font-weight: 600; color: var(--white);
  line-height: 1.15; margin-bottom: 1rem;
}
.svc-detail-desc {
  color: rgba(255,255,255,.62); font-size: .9rem;
  line-height: 1.85; margin-bottom: 2rem;
}
.svc-detail-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--gold-light); font-size: .78rem; font-weight: 600;
  text-decoration: none; letter-spacing: .1em; text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(201,168,76,.35);
  transition: color .2s, border-color .2s, gap .2s;
}
.svc-detail-cta:hover { color: var(--white); border-color: rgba(255,255,255,.5); gap: .75rem; }

/* Responsive */
@media(max-width:1024px){
  .services-explorer { grid-template-columns: 300px 1fr; }
}
@media(max-width:768px){
  .services-explorer {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .svc-list {
    border-right: none;
    border-bottom: 1px solid rgba(17,34,64,.09);
    max-height: 260px;
  }
  .svc-detail { padding: 2.5rem 1.75rem; min-height: 320px; }
  .svc-detail::after { font-size: 8rem; }
  .svc-detail-name { font-size: 1.6rem; }
  .svc-detail-icon { width: 56px; height: 56px; margin-bottom: 1.25rem; }
  .svc-detail-icon svg { width: 28px; height: 28px; }
}
@media(max-width:480px){
  .svc-list { max-height: 220px; }
  .svc-detail { padding: 2rem 1.25rem; }
}

/* ─── SECTORES ───────────────────────────────────────── */
.sectores-section { background: var(--cream); }
.sectores-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; margin-top:3rem; }

.sector-card {
  border-radius:8px; overflow:hidden;
  position:relative; min-height:260px;
  display:flex; flex-direction:column; justify-content:flex-end;
  cursor:pointer;
  transition: transform .3s;
}
.sector-card:hover { transform: scale(1.02); }
.sector-bg {
  position:absolute; inset:0;
  transition: transform .4s;
}
.sector-card:hover .sector-bg { transform: scale(1.06); }
.sector-bg-1 { background: linear-gradient(135deg, #1a3560 0%, #0d1f3c 100%); }
.sector-bg-2 { background: linear-gradient(135deg, #2d1a40 0%, #1a0d2e 100%); }
.sector-bg-3 { background: linear-gradient(135deg, #1a2d40 0%, #0d1e2e 100%); }
.sector-bg-4 { background: linear-gradient(135deg, #1a3530 0%, #0d201e 100%); }
.sector-overlay {
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
}
.sector-content { position:relative; z-index:1; padding:2rem; }
.sector-emoji { font-size:2.5rem; margin-bottom:.75rem; display:block; }
.sector-name { font-family:'Cormorant Garamond',serif; color:var(--white); font-size:1.5rem; margin-bottom:.5rem; }
.sector-desc { color:rgba(255,255,255,.65); font-size:.82rem; line-height:1.6; }
.sector-link {
  display:inline-flex; align-items:center; gap:.4rem;
  color: var(--gold-light); font-size:.78rem; letter-spacing:.06em;
  text-transform:uppercase; margin-top:1rem;
  font-weight:500; text-decoration:none;
}

/* ─── NOSOTROS ───────────────────────────────────────── */
.nosotros-grid { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }
.nosotros-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius:10px; padding:3rem;
  position:relative;
}
.nosotros-visual::before {
  content:''; position:absolute; top:16px; left:16px; right:-16px; bottom:-16px;
  border:1px solid rgba(201,168,76,.2); border-radius:10px; pointer-events:none;
}
.values-list { list-style:none; display:flex; flex-direction:column; gap:1rem; }
.values-list li {
  display:flex; align-items:flex-start; gap:.85rem;
  color:rgba(255,255,255,.75); font-size:.9rem; line-height:1.6;
}
.val-icon {
  width:28px; height:28px; flex-shrink:0;
  background:rgba(201,168,76,.15); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color: var(--gold-light); font-size:.7rem; margin-top:1px;
}
.val-bold { color:var(--white); font-weight:600; }

/* nosotros metrics bar */
.nosotros-metrics {
  margin-top: 2rem; display: flex; gap: 0; flex-wrap: wrap;
  border: 1px solid rgba(17,34,64,.1); border-radius: 8px; overflow: hidden;
}
.nosotros-metric {
  flex: 1; text-align: center; padding: 1.25rem 1rem;
  border-right: 1px solid rgba(17,34,64,.1);
  min-width: 120px;
}
.nosotros-metric:last-child { border-right: none; }
.nosotros-metric-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; color: var(--gold-dark); font-weight: 600;
  line-height: 1;
}
.nosotros-metric-label {
  font-size: .72rem; color: var(--gray);
  text-transform: uppercase; letter-spacing: .06em; margin-top: .35rem;
}

/* ─── CONTACTO ───────────────────────────────────────── */
.contacto-section { background: var(--cream); }
.contacto-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; }
.contact-form-wrap {
  background:var(--white); border-radius:8px;
  padding:2.5rem; border:1px solid rgba(17,34,64,.08);
}
.form-title { font-family:'Cormorant Garamond',serif; font-size:1.6rem; color:var(--navy); margin-bottom:1.5rem; }

.form-group { margin-bottom:1.25rem; }
.form-label { display:block; font-size:.8rem; font-weight:500; letter-spacing:.06em; text-transform:uppercase; color:var(--navy); margin-bottom:.5rem; }
.form-input, .form-select, .form-textarea {
  width:100%; padding:.75rem 1rem;
  border:1px solid rgba(17,34,64,.15); border-radius:4px;
  font-family:'DM Sans',sans-serif; font-size:.9rem; color:var(--navy);
  background:var(--white); outline:none;
  transition: border-color .25s, box-shadow .25s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.form-textarea { resize:vertical; min-height:100px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }

.btn-submit {
  width:100%; padding:.9rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color:var(--gold-light); font-size:.85rem; font-weight:600;
  letter-spacing:.08em; text-transform:uppercase;
  border:none; border-radius:4px; cursor:pointer;
  transition: opacity .25s, transform .2s;
  font-family:'DM Sans',sans-serif;
  margin-top:.5rem;
}
.btn-submit:hover { opacity:.9; transform:translateY(-1px); }

.contact-info { display:flex; flex-direction:column; gap:1.5rem; margin-top:2rem; }
.contact-block {
  display:flex; gap:1rem; align-items:flex-start;
  padding:1.25rem 1.5rem;
  background:var(--white); border-radius:6px;
  border:1px solid rgba(17,34,64,.08);
}
.contact-block-icon {
  width:44px; height:44px; flex-shrink:0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
}
.contact-block-icon svg { width:20px; height:20px; color:var(--gold-light); }
.contact-block-label { font-size:.73rem; letter-spacing:.08em; text-transform:uppercase; color:var(--gold-dark); font-weight:600; }
.contact-block-val { font-size:.95rem; color:var(--navy); margin-top:.2rem; }

/* ─── FOOTER ─────────────────────────────────────────── */
footer { background: var(--navy); padding:4rem 2rem 2rem; }
.footer-inner { max-width:1280px; margin:auto; }
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr;
  gap:3rem; padding-bottom:3rem;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand-text {
  font-family:'Cormorant Garamond',serif;
  font-size:1.6rem; color:var(--white); margin-bottom:.75rem;
}
.footer-brand-text span { color:var(--gold-light); }
.footer-tagline { color:rgba(255,255,255,.45); font-size:.85rem; line-height:1.7; }

.footer-col-title {
  font-size:.72rem; letter-spacing:.12em; text-transform:uppercase;
  color:var(--gold); font-weight:600; margin-bottom:1.25rem;
}
.footer-links { list-style:none; display:flex; flex-direction:column; gap:.65rem; }
.footer-links a {
  text-decoration:none; color:rgba(255,255,255,.45); font-size:.85rem;
  transition:color .2s;
}
.footer-links a:hover { color:var(--gold-light); }

.footer-bottom {
  display:flex; justify-content:space-between; align-items:center;
  padding-top:2rem; flex-wrap:wrap; gap:1rem;
}
.footer-copy { color:rgba(255,255,255,.3); font-size:.78rem; }
.footer-gold { color:var(--gold-light); }

/* ─── FLOATING CTA ───────────────────────────────────── */
.float-cta {
  position:fixed; bottom:2rem; right:2rem; z-index:998;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color:var(--navy); width:56px; height:56px;
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 24px rgba(201,168,76,.4);
  text-decoration:none;
  transition: transform .2s, box-shadow .2s;
  animation: pulse-gold 2.5s infinite;
}
.float-cta:hover { transform:scale(1.1); box-shadow:0 12px 32px rgba(201,168,76,.5); animation:none; }
@keyframes pulse-gold {
  0%,100%{ box-shadow: 0 8px 24px rgba(201,168,76,.4); }
  50%{ box-shadow: 0 8px 32px rgba(201,168,76,.7); }
}

/* ─── RESPONSIVE ─────────────────────────────────────── */

/* Tablet landscape (1024px) */
@media(max-width:1024px){
  .cobertura-grid, .nosotros-grid { grid-template-columns:1fr; gap:2.5rem; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:2rem; }
  .contacto-grid { grid-template-columns:1fr; }
  .hero-content { gap:3rem; }
  .section { padding:5rem 2rem; }
}

/* Tablet portrait / large phone (768px) */
@media(max-width:768px){
  .section { padding:4rem 1.5rem; }

  /* Navbar */
  .nav-inner { padding: 0 1.25rem; }
  .nav-links {
    display:none; flex-direction:column; position:absolute; top:72px; left:0; right:0;
    background:var(--white); padding:1.25rem 1.5rem; gap:.85rem;
    border-bottom:1px solid rgba(201,168,76,.15);
    box-shadow: 0 8px 24px rgba(17,34,64,.08);
  }
  .nav-links.open { display:flex; }
  .hamburger { display:flex; }

  /* Hero */
  .hero-content { grid-template-columns:1fr; padding:6rem 1.25rem 4rem; }
  .hero-visual { display:none; }
  .hero-title { font-size: clamp(2rem, 7vw, 3rem); }
  .hero-sub { font-size: .93rem; max-width: 100%; }
  .hero-statement { padding: 1rem 1.25rem; }

  /* Texto general a ancho completo en mobile */
  .section-body { max-width: 100%; }

  /* Grids */
  .sectores-grid { grid-template-columns:1fr 1fr; gap:1rem; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:2rem; }
  .form-row { grid-template-columns:1fr; }
  .nosotros-grid { gap:2rem; }
  .cobertura-grid { gap:2rem; }

  /* Coverage search */
  .search-input-group { flex-direction: column; }
  .search-btn { width: 100%; justify-content: center; min-height: 44px; }
  .coverage-search-wrap { padding: 1.75rem; }

  /* Nosotros metrics — fila en tablet */
  .nosotros-metrics { flex-direction: row; }
  .nosotros-metric { border-right: 1px solid rgba(17,34,64,.1); }
  .nosotros-metric:last-child { border-right: none; }

  /* Contact */
  .contacto-grid { gap:2.5rem; }

  /* Services explorer en tablet */
  .svc-detail { min-height: 280px; padding: 2.25rem 2rem; }
}

/* ─── SECTORES: colapso a 1 col en móvil pequeño ──────── */
@media(max-width:520px){
  .sectores-grid { grid-template-columns: 1fr; }
}

/* Small phones (480px) */
@media(max-width:480px){
  .section { padding:3.5rem 1rem; }

  /* Nosotros metrics — columna en móvil */
  .nosotros-metrics { flex-direction: column; }
  .nosotros-metric {
    border-right: none; border-bottom: 1px solid rgba(17,34,64,.1);
    min-width: auto; padding: .9rem .75rem;
  }
  .nosotros-metric:last-child { border-bottom: none; }
  .nosotros-metric-val { font-size: 1.5rem; }

  .footer-grid { grid-template-columns:1fr; }
  .footer-tagline { font-size: .8rem; }
  .footer-col-title { font-size: .65rem; }
  footer { padding: 3rem 1.25rem 1.5rem; }

  .section-title { font-size: clamp(1.7rem, 6vw, 2.3rem); }

  .contact-form-wrap { padding: 1.5rem 1rem; }
  .form-input, .form-select, .form-textarea { font-size: .85rem; }
  .btn-submit { min-height: 44px; }

  .search-chips { gap: .35rem; }
  .search-chip { font-size: .72rem; padding: .25rem .7rem; }

  .nosotros-visual { padding: 1.75rem 1.25rem; }

  .sector-card { min-height: 210px; }
  .sector-emoji { font-size: 2rem; }

  /* Services explorer en móvil */
  .svc-item { padding: .9rem 1.25rem; }
  .svc-item-name { font-size: .82rem; }
  .svc-detail-name { font-size: 1.45rem; }
  .svc-detail-desc { font-size: .85rem; margin-bottom: 1.5rem; }

  /* Lang switcher en móvil — target táctil adecuado */
  .lang-btn { min-width: 40px; min-height: 40px; font-size: 1rem; }
  .lang-switcher { gap: .1rem; }
}

/* Ultra-small (360px) */
@media(max-width:360px){
  .section { padding: 3rem .875rem; }
  .nav-inner { padding: 0 1rem; }
  .nav-logo img { height: 40px; max-width: 120px; }
  .hero-content { padding: 5.5rem 1rem 3.5rem; }
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .sectores-grid { grid-template-columns: 1fr; }
  .nosotros-metrics { gap: 0; }
  .coverage-search-wrap { padding: 1.5rem 1rem; }
  .search-heading { font-size: 1.45rem; }
  .svc-detail { padding: 1.75rem 1rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .footer-copy { font-size: .72rem; }
}

/* ─── AVISO DE PRIVACIDAD – Checkbox ─────────────────── */
.privacy-consent { margin-top: .25rem; }

.privacy-label {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  cursor: pointer;
  font-size: .855rem;
  color: var(--gray);
  line-height: 1.6;
  user-select: none;
}

.privacy-label input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid rgba(201,168,76,.6);
  border-radius: 3px;
  cursor: pointer;
  margin-top: 2px;
  background: var(--white);
  position: relative;
  transition: background .2s, border-color .2s, box-shadow .2s;
  flex-shrink: 0;
}

.privacy-label input[type="checkbox"]:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}

.privacy-label input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}

.privacy-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.privacy-link {
  color: var(--gold-dark);
  text-decoration: underline;
  font-weight: 500;
  transition: color .2s;
}
.privacy-link:hover { color: var(--navy); }

/* Estado de error cuando no se ha aceptado el aviso */
.privacy-error .privacy-label { animation: privacyShake .35s ease; }
.privacy-error .privacy-label input[type="checkbox"] {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,.12);
}
.privacy-error .privacy-label span { color: #c0392b; }

@keyframes privacyShake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  40%      { transform: translateX(6px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(4px); }
}

/* ─── SCROLL ANIMATIONS ──────────────────────────────── */
.fade-up {
  opacity:0; transform:translateY(28px);
  transition: opacity .6s, transform .6s;
}
.fade-up.visible { opacity:1; transform:translateY(0); }

.fade-up:nth-child(2){ transition-delay:.1s; }
.fade-up:nth-child(3){ transition-delay:.2s; }
.fade-up:nth-child(4){ transition-delay:.3s; }
.fade-up:nth-child(5){ transition-delay:.4s; }
.fade-up:nth-child(6){ transition-delay:.5s; }
