:root{
  --orange:#FF6600;
  --blue:#0A2342;
  --yellow:#FFCC00;
  --text:#111827;
  --muted:#6b7280;
  --soft:#f6f7fb;

  --shadow: 0 14px 40px rgba(0,0,0,.12);
  --shadow-soft: 0 10px 24px rgba(0,0,0,.08);
  --shadow-sm: 0 8px 18px rgba(0,0,0,.08);

  --radius: 14px;

  --overlayA: rgba(10,35,66,.40);
  --overlayB: rgba(10,35,66,.46);
}

*{ margin:0; padding:0; box-sizing:border-box; font-family:'Segoe UI', system-ui, -apple-system, sans-serif; }
html{ scroll-behavior:smooth; }

/* ✅ Evita desplazamiento horizontal */
html, body{
  width:100%;
  max-width:100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
}
@supports not (overflow-x: clip){
  html, body{ overflow-x:hidden; }
}

body{
  color:var(--text);
  background:#fff;
  touch-action: pan-y;
}

a{ text-decoration:none; color:inherit; transition:.25s ease; }
ul{ list-style:none; }
img{ max-width:100%; display:block; }
.container{ max-width:1200px; margin:0 auto; padding:0 20px; }

.text-orange{ color: var(--orange); }

/* =========================
   Micro Animations
   ========================= */
.hover-lift{ transition: transform .22s ease, box-shadow .22s ease; }
.hover-lift:hover{ transform: translateY(-4px); box-shadow: var(--shadow); }

.hover-zoom img{ transition: transform .45s ease; }
.hover-zoom:hover img{ transform: scale(1.04); }

.floaty{ animation: floaty 3.2s ease-in-out infinite; }
@keyframes floaty{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-4px);} }

.shine{ position:relative; overflow:hidden; }
.shine::after{
  content:"";
  position:absolute; top:-50%; left:-40%;
  width:60%; height:200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: rotate(18deg);
  animation: shine 3.6s infinite;
}
@keyframes shine{ 0%{ left:-60%; } 55%{ left:120%; } 100%{ left:120%; } }

/* =========================
   Preloader
   ========================= */
.preloader-overlay{
  position:fixed; inset:0;
  background: radial-gradient(1200px 700px at 30% 20%, rgba(255,102,0,.12), transparent 60%),
              radial-gradient(1000px 600px at 80% 70%, rgba(10,35,66,.14), transparent 55%),
              #f4f4f4;
  z-index:99999;
  display:flex; justify-content:center; align-items:center;
  padding:20px;
  transition: opacity .55s ease, visibility .55s ease;
}
.preloader-hidden{ opacity:0; visibility:hidden; }
.loader-card{
  width:min(560px, 95vw);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  padding: 28px 22px;
  text-align:center;
}
.logo-loader{ width:120px; margin:0 auto 12px; filter: drop-shadow(0 10px 16px rgba(0,0,0,.12)); }
.loading-title{ font-weight:900; letter-spacing:.6px; font-size:1.1rem; text-transform:uppercase; }
.loading-sub{ margin-top:6px; color:#374151; font-weight:700; font-size:.95rem; }
.progress-wrap{ margin-top:18px; }
.progress-bar{ height:10px; background:#e5e7eb; border-radius:999px; overflow:hidden; box-shadow: inset 0 1px 3px rgba(0,0,0,.10); }
.progress-fill{ height:100%; width:0%; background: linear-gradient(90deg, var(--blue), var(--orange), var(--yellow)); border-radius:999px; transition: width .18s linear; }
.progress-meta{ display:flex; justify-content:space-between; margin-top:10px; color:#374151; font-weight:800; font-size:.95rem; }
.loader-badges{ margin-top:16px; display:flex; gap:10px; flex-wrap:wrap; justify-content:center; }
.loader-badges span{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px; border-radius:999px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-soft);
  font-weight:800; font-size:.92rem;
}
.loader-badges i{ color:var(--orange); }

/* =========================
   Top Bar
   ========================= */
.top-bar{ background:#05152a; color:#fff; padding:8px 0; font-size:.92rem; border-bottom:1px solid rgba(255,255,255,.08); }
.top-bar-content{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; }
.tb-left i, .tb-right i{ color:var(--orange); margin-right:6px; }
.tb-right a{ margin-left:15px; font-weight:800; opacity:.95; }
.tb-right a:hover{ color:var(--yellow); }
.license-tag{ font-weight:900; letter-spacing:.3px; }

/* =========================
   Navbar
   ========================= */
.navbar{
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: var(--shadow-sm);
  padding: 15px 0;
}
.nav-container{ display:flex; justify-content:space-between; align-items:center; }

.brand{ display:flex; align-items:center; gap:12px; }
.brand-logo{ height:50px; width:auto; }
.brand-info{ display:flex; flex-direction:column; line-height:1.1; }
.brand-name{ font-size:1.35rem; font-weight:900; color:var(--blue); text-transform: uppercase; }
.brand-sub{ font-size:.75rem; font-weight:700; color:var(--text); letter-spacing:1px; }

/* ✅ Desktop nav: siempre visible */
.nav-links{
  display:flex;
  align-items:center;
  gap:22px;
}
.nav-links a{ font-weight:800; font-size:1.02rem; opacity:.92; }
.nav-links a:hover{ color:var(--yellow); opacity:1; }
.nav-links .active{ color:var(--yellow); opacity:1; }

.btn-nav{
  background: var(--orange);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight:900 !important;
  border: 1px solid rgba(255,255,255,.10);
}
.btn-nav:hover{ background: var(--yellow); color: var(--blue) !important; }

.burger{
  display:none;
  background:transparent;
  border:none;
  cursor:pointer;
  width:44px; height:38px;
  position:relative;
}
.burger span{
  position:absolute; left:10px; right:10px;
  height:3px;
  background:#111827;
  border-radius:99px;
  transition:.25s ease;
}
.burger span:nth-child(1){ top:10px; }
.burger span:nth-child(2){ top:18px; }
.burger span:nth-child(3){ top:26px; }
.burger.is-open span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2){ opacity:0; }
.burger.is-open span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

/* Backdrop menú móvil */
.nav-backdrop{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(2px);
  z-index: 6500;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition: .25s ease;
}
.nav-backdrop.show{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

/* Cabecera panel móvil (se inserta desde JS como <li>) */
.nav-panel-head{ display:none; }

/* =========================
   ✅ FAB DESHABILITADO (sin botones flotantes)
   ========================= */
.fab{ display:none !important; pointer-events:none !important; }

/* =========================
   Hero + Slider
   ========================= */
.hero{ position:relative; overflow:hidden; }
.slider{ position:relative; height: 78vh; min-height: 520px; }
.slide{
  position:absolute; inset:0; opacity:0;
  background-size:cover; background-position:center;
  display:flex; align-items:center; justify-content:center;
  transition: opacity 1s ease;
}
.slide.current{ opacity:1; animation: zoomEffect 18s linear infinite; }
@keyframes zoomEffect{ 0%{ transform: scale(1);} 100%{ transform: scale(1.06);} }

.slide-content{
  position:relative;
  z-index:2;
  color:#fff;
  padding: 70px 0 130px;
}

.hero-badges{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:14px; }
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding: 8px 12px; border-radius:999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  font-weight:900;
}
.badge.ghost{ background: rgba(0,0,0,.14); border-color: rgba(255,255,255,.18); }
.inline-link{ color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }

.slide-content h1{
  font-size: clamp(1.55rem, 3.4vw, 3.2rem);
  font-weight: 980;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing:.7px;
  text-shadow: 0 12px 28px rgba(0,0,0,.35);
  max-width: 980px;
}
.slide-content p{
  margin-top: 12px;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  opacity:.95;
  max-width: 920px;
  line-height:1.55;
  text-shadow: 0 10px 22px rgba(0,0,0,.32);
}
.hero-cta{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 18px; }

.btn-main{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  background: var(--orange); color:#fff;
  padding: 13px 18px;
  font-size: 1.02rem;
  font-weight: 950;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
}
.btn-main:hover{ transform: translateY(-1px); background: var(--yellow); color: var(--blue); }

.btn-ghost{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 13px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.35);
  color:#fff;
  font-weight: 900;
  background: rgba(0,0,0,.18);
}
.btn-ghost:hover{ border-color: rgba(255,255,255,.55); background: rgba(0,0,0,.30); }

.hero-micro{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 16px; opacity:.95; }
.micro-item{
  display:inline-flex; align-items:center; gap:10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  font-weight: 850;
}
.micro-item i{ color: var(--yellow); }

.slider-controls{
  position:absolute;
  left:0; right:0;
  bottom: calc(14px + env(safe-area-inset-bottom));
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  z-index: 6;
  pointer-events:none;
}
.slider-controls *{ pointer-events:auto; }
.slider-btn{
  width:48px; height:48px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(0,0,0,.30);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition:.25s ease;
}
.slider-btn:hover{ background: rgba(255,102,0,.88); border-color: rgba(255,102,0,.3); }

.slider-dots{ display:flex; gap:10px; align-items:center; justify-content:center; flex:1; }
.dot{
  width:10px; height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.18);
  cursor:pointer;
  transition:.25s ease;
}
.dot.active{ width:30px; background: var(--yellow); border-color: rgba(255,204,0,.7); }

.hero-bottom{
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.85));
  padding: 18px 0 46px;
}
.hero-bottom-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.hb-card{
  background: rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: 14px;
  display:flex; gap:12px;
  box-shadow: var(--shadow-soft);
}
.hb-card i{
  width:40px; height:40px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 12px;
  background: rgba(255,102,0,.14);
  color: var(--orange);
}
.hb-card h4{ font-size:1.05rem; font-weight:950; }
.hb-card p{ margin-top:4px; color:var(--muted); line-height:1.4; }

/* =========================
   Sections
   ========================= */
.section-padding{ padding: 86px 0; }
.section-header{ text-align:center; margin-bottom: 40px; }
.section-header h2{
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 980;
  letter-spacing: .8px;
}
.line{ width:110px; height:5px; background: var(--orange); margin: 14px auto; border-radius:999px; }
.section-sub{ color: var(--muted); max-width: 860px; margin: 0 auto; line-height:1.6; font-weight:650; }
.bg-soft{ background: var(--soft); }

/* About */
.about-grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items:center; }
.about-text h3{ color: var(--orange); font-size: 1.6rem; font-weight: 980; margin-bottom: 12px; }
.about-text p{ color: #374151; line-height: 1.7; margin-bottom: 10px; font-weight: 560; }
.about-highlights{ margin-top: 14px; display:grid; gap: 10px; }
.highlight{
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: 14px;
  display:flex; gap: 12px;
  box-shadow: var(--shadow-soft);
}
.highlight i{
  width:44px; height:44px;
  border-radius: 14px;
  background: rgba(10,35,66,.10);
  display:flex; align-items:center; justify-content:center;
  color: var(--blue);
}
.highlight h4{ font-weight:950; }
.highlight p{ margin: 4px 0 0; color: var(--muted); line-height: 1.45; }
.about-cta{ margin-top: 14px; display:flex; gap:12px; flex-wrap:wrap; }

.about-photo{ border-radius: var(--radius); overflow:hidden; border: 1px solid rgba(0,0,0,.06); box-shadow: var(--shadow); }
.about-photo img{ width:100%; height: 360px; object-fit: cover; }

.about-stats{ margin-top: 12px; display:grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.stat{ background:#fff; border-radius: var(--radius); padding: 12px; border: 1px solid rgba(0,0,0,.06); box-shadow: var(--shadow-soft); text-align:center; }
.stat-num{ display:block; font-weight: 980; color: var(--blue); font-size: 1.4rem; }
.stat-label{ display:block; margin-top: 6px; color: var(--muted); font-weight: 750; font-size: .92rem; }

/* Trust */
.trust-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trust-card{
  background:#fff;
  border-radius: var(--radius);
  border:1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}
.trust-icon{
  width:54px; height:54px; border-radius: 16px;
  background: rgba(255,102,0,.14);
  display:flex; align-items:center; justify-content:center;
  color: var(--orange);
  font-size: 22px;
  margin-bottom: 10px;
}
.trust-card h3{ font-weight: 980; font-size: 1.12rem; }
.trust-card p{ margin-top: 8px; color: var(--muted); line-height: 1.6; font-weight: 650; }
.trust-cta{ margin-top: 18px; }
.text-center{ text-align:center; }

/* Parallax */
.parallax-section{ background-attachment: fixed; background-size: cover; background-position: center; position:relative; padding: 108px 0; color:#fff; }
.overlay-soft .overlay-layer{
  background: linear-gradient(180deg, var(--overlayA), var(--overlayB));
  padding: 70px 0;
}
.features-row{ display:flex; justify-content: center; flex-wrap:wrap; gap: 14px; margin-top: 26px; }
.feature-item{ width: min(320px, 92vw); padding: 16px; border-radius: var(--radius); }
.feature-item i{ font-size: 2.1rem; color: var(--yellow); margin-bottom: 10px; }
.feature-item h4{ font-weight: 980; font-size: 1.12rem; }
.feature-item p{ margin-top: 6px; opacity:.95; line-height:1.55; }
.glass{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.parallax-cta{ margin-top: 18px; display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }

/* Process */
.process-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.process-step{
  background:#fff;
  border-radius: var(--radius);
  border:1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}
.step-badge{
  width:40px; height:40px;
  border-radius: 14px;
  background: rgba(255,102,0,.14);
  color: var(--orange);
  display:flex; align-items:center; justify-content:center;
  font-weight: 980;
  margin-bottom: 10px;
}
.process-step h3{ font-size: 1.05rem; font-weight: 980; }
.process-step p{ margin-top: 8px; color: var(--muted); line-height: 1.55; font-weight: 650; }

/* Primary services */
.primary-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.primary-card{
  background:#fff;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}
.p-card-img{ height:220px; overflow:hidden; border-radius: 14px; border:1px solid rgba(0,0,0,.06); }
.p-card-img img{ width:100%; height:100%; object-fit:cover; transition: transform .5s; }
.primary-card:hover .p-card-img img{ transform: scale(1.04); }

.service-header{ display:flex; align-items:center; gap:12px; margin-top: 12px; }
.service-header h3{ margin:0; padding:0; }

.primary-icon{
  width:52px; height:52px;
  border-radius: 16px;
  background: rgba(10,35,66,.10);
  display:flex; align-items:center; justify-content:center;
  color: var(--blue);
  font-size: 22px;
}
.primary-card p{ margin-top: 8px; color: var(--muted); line-height:1.55; font-weight: 650; }

.btn-service{
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--blue);
  color:#fff;
  font-weight: 950;
  display:inline-flex; align-items:center; justify-content:center;
}
.btn-service:hover{ background: var(--orange); }

/* Additional services */
.services-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.service-card{
  background:#fff;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}
.service-icon{
  width:52px; height:52px;
  border-radius: 16px;
  background: rgba(255,102,0,.14);
  display:flex; align-items:center; justify-content:center;
  color: var(--orange);
  font-size: 22px;
  margin-bottom: 10px;
}
.service-card h3{ font-weight: 980; font-size:1.1rem; }
.service-card p{ margin-top: 8px; color: var(--muted); line-height:1.55; font-weight: 650; }
.service-actions{ display:flex; align-items:center; justify-content:space-between; gap: 10px; margin-top: 12px; }
.service-mini{ display:flex; gap: 10px; }
.service-mini a{
  width:38px; height:38px;
  border-radius: 12px;
  background: rgba(0,0,0,.06);
  display:flex; align-items:center; justify-content:center;
}
.service-mini a:hover{ background: rgba(255,102,0,.16); }

/* Video wide */
.video-wide{
  position:relative;
  width:100%;
  min-height: 56vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.video-wide-overlay{
  position:relative;
  width:100%;
  padding: 90px 0;
  background: linear-gradient(120deg, rgba(10,35,66,.62), rgba(10,35,66,.30));
}
.video-wide-content{
  text-align:center;
  color:#fff;
  max-width: 920px;
}
.video-wide-content h2{
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  text-transform: uppercase;
  font-weight: 980;
  letter-spacing: .9px;
  text-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.video-wide-content p{
  margin-top: 12px;
  opacity:.95;
  line-height:1.7;
  font-weight:650;
  text-shadow: 0 16px 30px rgba(0,0,0,.24);
}
.video-wide-actions{ margin-top: 18px; display:flex; justify-content:center; gap: 12px; flex-wrap:wrap; }

/* Gallery */
.gallery-filters{
  display:flex; gap:10px; flex-wrap:nowrap;
  overflow:auto;
  justify-content:flex-start;
  padding-bottom: 8px;
  margin-bottom: 12px;
  scrollbar-width: none;
}
.gallery-filters::-webkit-scrollbar{ display:none; }
.filter-btn{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background:#fff;
  font-weight: 900;
  cursor:pointer;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}
.filter-btn.active{ background: rgba(255,102,0,.14); border-color: rgba(255,102,0,.24); }

.gallery-masonry{ columns: 3 260px; column-gap: 12px; }
.gallery-tile{
  width:100%;
  border:none;
  padding:0;
  background:transparent;
  cursor:pointer;
  border-radius: 14px;
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,.06);
  transition: .25s ease;
  margin: 0 0 12px;
  break-inside: avoid;
  position:relative;
}
.gallery-tile:hover{ transform: translateY(-3px); box-shadow: var(--shadow); }
.gallery-tile img{ width:100%; height:auto; display:block; }
.tile-cap{
  position:absolute; left:10px; bottom:10px;
  background: rgba(10,35,66,.70);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  color:#fff;
  font-weight: 950;
  padding: 8px 10px;
  border-radius: 999px;
}

/* Modal */
.modal{ position:fixed; inset:0; z-index: 9999; display:none; }
.modal.show{ display:block; }
.modal-backdrop{ position:absolute; inset:0; background: rgba(0,0,0,.65); backdrop-filter: blur(4px); }
.modal-card{
  position:absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(980px, 94vw);
  background:#fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modal-card img{ width:100%; height: min(70vh, 720px); object-fit: cover; }
.modal-close{
  position:absolute; top: 10px; right: 10px;
  width: 44px; height: 44px; border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.92);
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
}

/* Coverage */
.coverage-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.coverage-list{
  background:#fff; border-radius: var(--radius);
  border:1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}
.coverage-list h3{ font-weight: 980; }
.coverage-note{ margin-top:8px; color: var(--muted); font-weight:650; line-height:1.6; }
.city-badges{ margin-top: 12px; display:flex; flex-wrap:wrap; gap: 10px; }
.city-badges span{ padding: 10px 12px; border-radius: 999px; background: rgba(255,102,0,.12); border: 1px solid rgba(255,102,0,.20); font-weight: 900; }
.coverage-cta{ margin-top: 14px; display:flex; gap: 10px; flex-wrap:wrap; }
.map-container{ background:#fff; border-radius: var(--radius); border:1px solid rgba(0,0,0,.06); box-shadow: var(--shadow-soft); overflow:hidden; }

/* FAQ */
.faq-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.faq-item{ border-radius: 14px; border: 1px solid rgba(0,0,0,.06); overflow:hidden; background: #fff; box-shadow: var(--shadow-soft); }
.faq-question{
  width:100%;
  text-align:left;
  padding: 14px;
  cursor:pointer;
  display:flex; justify-content:space-between; align-items:center;
  font-weight: 950;
  background: rgba(10,35,66,.04);
  border:none;
}
.faq-answer{ max-height:0; overflow:hidden; transition: max-height .28s ease; padding: 0 14px; }
.faq-answer p{ padding: 12px 0; color: var(--muted); line-height:1.6; font-weight: 650; }
.faq-item.active .faq-question{ background: rgba(255,102,0,.10); }
.faq-item.active .faq-question i{ transform: rotate(180deg); transition: .25s ease; }

/* Contact */
.contact-section-bg{ background: var(--blue); padding: 82px 0; }
.contact-card-wrapper{
  display:flex;
  background:#fff;
  border-radius: 18px;
  overflow:hidden;
  box-shadow: var(--shadow);
  flex-wrap:wrap;
}
.contact-info-side{
  background: linear-gradient(180deg, #071a33, #06152b);
  color:#fff;
  flex: 1;
  padding: 28px;
  min-width: 280px;
}
.contact-info-side h3{ color: var(--yellow); font-size: 1.85rem; font-weight: 980; }
.contact-info-side p{ margin-top: 10px; color: rgba(255,255,255,.86); line-height:1.6; font-weight:650; }
.info-row{ margin-top: 14px; font-size: 1.02rem; display:flex; gap:10px; align-items:center; }
.info-row i{ color: var(--orange); width: 22px; }
.info-row a:hover{ color: var(--yellow); }
.contact-form-side{ flex: 1.35; padding: 28px; min-width: 300px; }
.contact-form-side h3{ color: var(--blue); font-size: 1.85rem; font-weight: 980; }

.form-group{ margin-top: 14px; }
.form-row{ display:flex; gap: 12px; }
.form-row .form-group{ flex:1; }
label{ display:block; font-weight:900; margin-bottom: 8px; color: #374151; }
input, textarea, select{
  width:100%;
  padding: 12px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  font-size: 1rem;
  outline:none;
}
input:focus, textarea:focus, select:focus{ border-color: rgba(255,102,0,.85); box-shadow: 0 0 0 4px rgba(255,102,0,.12); }
.submit-btn{
  width:100%;
  margin-top: 16px;
  background: var(--orange);
  color:#fff;
  padding: 14px;
  border:none;
  border-radius: 14px;
  font-size: 1.02rem;
  font-weight: 980;
  cursor:pointer;
  display:flex; align-items:center; justify-content:center; gap:10px;
}
.submit-btn:hover{ background: var(--blue); }

/* Footer */
footer{ background:#05152a; color:#cbd5e1; padding-top: 56px; }
.footer-content{ display:flex; justify-content:space-between; flex-wrap:wrap; gap: 30px; padding-bottom: 34px; }
.footer-col{ min-width: 240px; }
.footer-col h3{ color:#fff; margin-bottom: 14px; font-weight: 980; }
.footer-col p{ color: rgba(255,255,255,.82); line-height:1.6; }
.footer-col ul li{ margin-bottom: 10px; }
.footer-col ul a:hover{ color: var(--orange); }
.footer-contact{ display:grid; gap: 10px; }
.footer-contact a{
  display:flex; gap: 10px; align-items:center;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.footer-contact i{ color: var(--orange); }
.copyright{ text-align:center; padding: 18px; background:#020d1a; border-top:1px solid rgba(255,255,255,.06); }

/* =========================
   Responsive
   ========================= */
@media(max-width: 980px){
  .about-grid{ grid-template-columns: 1fr; }
  .process-grid{ grid-template-columns: 1fr 1fr; }
  .hero-bottom-grid{ grid-template-columns: 1fr; }
  .gallery-masonry{ columns: 2 240px; }
  .coverage-grid{ grid-template-columns: 1fr; }
  .trust-grid{ grid-template-columns: 1fr 1fr; }
  .faq-grid{ grid-template-columns: 1fr; }
}

/* ✅ Menú off-canvas (solo móvil/tablet) */
@media (max-width: 1024px){
  .burger{ display:block; }

  .nav-panel-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 12px;
    width:100%;
    padding: 12px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    margin-bottom: 8px;
  }
  .nav-panel-title{ color:#fff; font-weight:950; letter-spacing:.4px; }
  .nav-close{
    width:42px; height:42px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.18);
    color:#fff;
    cursor:pointer;
    display:flex; align-items:center; justify-content:center;
  }
  .nav-close:hover{ background: rgba(0,0,0,.32); }

  .nav-links{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;

    width: min(84vw, 380px);
    height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    background: linear-gradient(180deg, rgba(10,35,66,.98), rgba(10,35,66,.96));
    box-shadow: -18px 0 40px rgba(0,0,0,.22);
    z-index: 7000;

    display:flex;
    flex-direction:column;
    align-items:flex-start;

    /* ✅ más limpio */
    padding: 18px;
    gap: 10px;

    transform: translate3d(110%, 0, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    contain: paint;
    will-change: transform;

    transition: transform .35s ease, opacity .2s ease, visibility 0s linear .35s;
  }

  .nav-links.open{
    transform: translate3d(0,0,0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform .35s ease, opacity .2s ease;
  }

  .nav-links li{ width:100%; }
  .nav-links a{
    display:block; width:100%;
    padding: 12px;
    border-radius: 12px;
    color:#fff;
  }
  .nav-links a:hover{ background: rgba(255,255,255,.10); }

  .top-bar-content{ flex-direction:column; text-align:center; }
}

@media(max-width: 768px){
  .slide-content{ padding: 56px 0 118px; text-align:center; }
  .slide-content h1{
    font-size: clamp(1.28rem, 5.2vw, 1.9rem);
    line-height: 1.12;
    margin-left:auto; margin-right:auto;
  }
  .slide-content p{
    font-size: clamp(.98rem, 3.6vw, 1.08rem);
    margin-left:auto; margin-right:auto;
  }
  .hero-badges, .hero-cta, .hero-micro{ justify-content:center; }

  .gallery-masonry{ columns: 1 260px; }

  .video-wide{ min-height: 52vh; }
  .video-wide-overlay{ padding: 70px 0; }

  .form-row{ flex-direction:column; }

  .trust-grid{ grid-template-columns: 1fr; }
  .process-grid{ grid-template-columns: 1fr; }
  .features-row{ gap: 12px; }
}

@media(max-width: 420px){
  .slider-btn{ width:44px; height:44px; }
  .btn-main, .btn-ghost{ width:100%; justify-content:center; }
}
