:root{
  --bg:#0B0B0F;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.04);

  --text:#FFFFFF;
  --muted:rgba(255,255,255,.72);
  --line:rgba(255,255,255,.14);

  --accent:#E30613;
  --accent2:#FF4D4D;

  --shadow: 0 22px 70px rgba(0,0,0,.45);
  --radius: 20px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  line-height:1.55;
  background:
    radial-gradient(1100px 720px at 18% 8%, rgba(227,6,19,.22), transparent 60%),
    radial-gradient(1000px 700px at 86% 18%, rgba(255,77,77,.12), transparent 58%),
    radial-gradient(900px 700px at 60% 90%, rgba(227,6,19,.10), transparent 60%),
    var(--bg);
}

a{ color:inherit; }
.container{ width:min(1180px, 92%); margin:0 auto; }

.muted{ color: var(--muted); }
.tiny{ font-size:.88rem; }
.lead{ color: var(--muted); font-size: 1.06rem; }

/* ===== Topbar ===== */
.topbar{
  border-bottom:1px solid var(--line);
  background: rgba(11,11,15,.68);
  backdrop-filter: blur(10px);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; padding:10px 0;
}
.topbar__left,.topbar__right{ display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.pill{
  font-size:.85rem;
  padding:6px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(255,255,255,.05);
}
.toplink{ text-decoration:none; font-weight:700; font-size:.92rem; opacity:.95; }
.toplink:hover{ text-decoration:underline; opacity:1; }

/* ===== Header ===== */
.header{
  position:sticky; top:0; z-index:50;
  border-bottom:1px solid var(--line);
  background: rgba(11,11,15,.58);
  backdrop-filter: blur(12px);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:14px;
}

.brand{
  display:flex; align-items:center; gap:12px;
  text-decoration:none;
}
.brand__img{
  width:46px; height:46px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.brand__text strong{ display:block; letter-spacing:.3px; }
.brand__text span{ display:block; margin-top:-3px; color: var(--muted); font-size:.9rem; }

.nav{ display:flex; align-items:center; gap:18px; }
.nav a{
  text-decoration:none;
  color: var(--muted);
  font-weight:800;
  font-size:.95rem;
}
.nav a:hover{ color: var(--text); }

.menuBtn{
  display:none;
  width:44px; height:44px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  cursor:pointer;
}
.menuBtn span{
  display:block; height:2px; width:20px;
  background: var(--text);
  margin:5px auto;
  border-radius:10px;
  opacity:.92;
}

.mobileNav{
  display:none;
  border-top:1px solid var(--line);
  background: rgba(11,11,15,.72);
}
.mobileNav__inner{
  padding:14px 0;
  display:grid;
  gap:10px;
}
.mobileNav a{
  text-decoration:none;
  color: var(--muted);
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.mobileNav a:hover{ color: var(--text); }
.mobileNav.show{ display:block; }

/* ===== HERO ===== */
.hero{ padding: 28px 0 14px; }
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:start;
}

/* Copy */
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:7px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-weight:800;
  font-size:.9rem;
}
.dot{
  width:8px; height:8px; border-radius:99px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 4px rgba(227,6,19,.18);
}

.hero__copy h1{
  margin: 14px 0 10px;
  font-size: clamp(2.0rem, 2.5vw + 1rem, 3.05rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.gradient{
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip:text; background-clip:text;
  color:transparent;
}
.notice{
  margin-top: 16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--muted);
}
.notice strong{ color: var(--text); }
.legalLinks{
  margin-top: 12px;
  display:flex; gap:10px; flex-wrap:wrap;
  color: var(--muted);
  font-weight:800;
}
.legalLinks a{ text-decoration:none; }
.legalLinks a:hover{ text-decoration:underline; }
.legalLinks span{ opacity:.6; }

/* ===== Search Card ===== */
.searchCard{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 96px;
  overflow: visible;
}
.searchCard::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(700px 300px at 20% 0%, rgba(227,6,19,.25), transparent 60%),
    radial-gradient(700px 300px at 85% 20%, rgba(255,77,77,.15), transparent 60%);
  opacity:.75;
  pointer-events:none;
}
.searchCard > *{ position: relative; z-index: 1; }

.searchHead h2{ margin:0 0 6px; font-size: 1.38rem; letter-spacing:-0.01em; }
.searchHead p{ margin:0; }
.flightForm{ margin-top: 12px; }

/* =================================================
   ✅ BUSCADOR HORIZONTAL PRO (ÚNICA VERSIÓN)
================================================= */

.inputWrap{ position:relative; width:100%; }

/* Tabs */
.tripTabs{
  display:flex;
  gap:12px;
  padding:6px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  margin-top:10px;
}
.tripTab{ flex:1; cursor:pointer; user-select:none; }
.tripTab input{ display:none; }
.tripTab span{
  display:flex; justify-content:center; align-items:center;
  padding:10px 14px;
  border-radius:999px;
  font-weight:1000;
  color: rgba(255,255,255,.70);
}
.tripTab:has(input:checked) span{
  background: linear-gradient(135deg, rgba(227,6,19,.95), rgba(255,77,77,.85));
  color:#0b0b0f;
}

/* Barra principal */
.searchBar{
  margin-top:14px;
  display:grid;
  gap:14px;
  align-items: stretch;

  padding:14px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(10,10,14,.55);

  grid-template-columns:
    minmax(240px, 1.4fr)   /* Origen */
    52px                   /* Swap */
    minmax(240px, 1.4fr)   /* Destino */
    minmax(170px, 1fr)     /* Ida */
    minmax(140px, .8fr)    /* Pax */
    minmax(160px, .9fr)    /* Cabina */
    minmax(180px, 1.1fr);  /* Buscar */
}

.barField{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:8px;

  padding:12px 14px;
  border-radius:18px;

  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);

  min-height:90px;
  position:relative;
}

.barLabel{
  font-size:.82rem;
  color: rgba(255,255,255,.72);
  font-weight:900;
  letter-spacing:.2px;
}

.barControl input,
.barControl select{
  width:100%;
  height:46px;
  padding:10px 12px;
  border-radius:14px;

  border:1px solid rgba(255,255,255,.12);
  background: rgba(10,10,14,.65);

  color:#fff;
  outline:none;
  font-weight:800;
}
.barControl input::placeholder{ color: rgba(255,255,255,.45); }

.barControl input:focus,
.barControl select:focus{
  border-color: rgba(227,6,19,.60);
  box-shadow: 0 0 0 4px rgba(227,6,19,.18);
}

.barField .error{
  margin-top: 0;
  color:#FFB4B4;
  font-size:.80rem;
  min-height:1em;
}

/* Swap */
.swapBtn{
  align-self:stretch;
  min-height:90px;

  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);

  color:#fff;
  cursor:pointer;
  font-weight:1000;
  font-size:1.1rem;

  display:flex;
  align-items:center;
  justify-content:center;
}
.swapBtn:hover{
  background: rgba(227,6,19,.12);
  border-color: rgba(227,6,19,.25);
}

/* CTA */
.barCta{
  align-self:stretch;
  min-height:90px;

  border-radius:18px;
  border:none;

  background: linear-gradient(135deg, #E30613, #FF4D4D);
  color:#0b0b0f;

  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  font-weight:1000;
  font-size:1.05rem;

  box-shadow: 0 14px 34px rgba(227,6,19,.25);
}
.barCta:hover{ filter:brightness(1.05); transform: translateY(-1px); }
.barCta:active{ transform: translateY(0px); }

/* WhatsApp debajo */
.belowRow .field{ display:grid; gap:6px; }
.field span{ font-weight:900; font-size:.9rem; }
.field input, .field select{
  width:100%;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(10,10,14,.60);
  color: var(--text);
  outline:none;
}
.help{ color: var(--muted); font-size:.82rem; }

/* Consents */
.consents{
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 12px;
}
.check{
  display:flex; gap:10px; align-items:flex-start;
  color: var(--muted);
  margin: 10px 0 6px;
}
.check input{ margin-top: 3px; }
.check a{ color: var(--text); font-weight:900; text-decoration:none; }
.check a:hover{ text-decoration:underline; }

/* Buttons */
.btnGhost{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 1000;
  text-decoration:none;
}
.btnGhost:hover{ filter:brightness(1.05); }

.assistRow{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.btnGhost--wide{ width:100%; text-align:center; }

.formStatus{
  margin-top: 10px;
  font-weight: 900;
  color: #B7FFE8;
}

/* Autocomplete */
.searchCard{ overflow: visible !important; }
.acWrap{
  position:absolute;
  left:0;
  right:0;
  top: calc(100% + 10px);
  z-index: 999999;
}
.acBox{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(18,18,26,.98);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
}
.acItem{
  width:100%;
  text-align:left;
  border:0;
  background: transparent;
  color: rgba(255,255,255,.92);
  padding: 12px 14px;
  cursor:pointer;

  display:flex;
  flex-direction:column;
  gap:3px;
}
.acItem:hover{ background: rgba(227,6,19,.12); }
.acMain{
  font-weight: 1000;
  display:flex;
  gap:8px;
  align-items:center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.acCode{ font-weight: 900; color: rgba(255,255,255,.72); }
.acSub{
  font-size:.86rem;
  color: rgba(255,255,255,.66);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.acLine{ height:1px; background: rgba(255,255,255,.10); }

/* ===== Human box ===== */
.humanBox{
  margin-top: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  border-radius: 20px;
  padding: 14px;
}
.humanBox__top{
  display:flex; gap:10px; align-items:center;
}
.avatar{
  width:42px; height:42px;
  border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  font-weight: 1000;
  background: rgba(227,6,19,.18);
  border:1px solid rgba(227,6,19,.35);
}
.humanBox__msg{
  margin-top: 10px;
  color: rgba(255,255,255,.85);
  font-weight: 700;
  line-height: 1.45;
}

.how{ margin-top: 14px; }
.how h3{ margin:0 0 10px; }
.howGrid{ display:grid; gap:10px; }
.howStep{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  border-radius: 16px;
  padding: 12px;
}
.howStep strong{ display:block; }
.howStep span{ display:block; margin-top: 2px; }

/* ===== Sections ===== */
.section{ padding: 46px 0; }
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.section__head{ margin-bottom: 16px; }
.section__head h2{ margin:0 0 6px; font-size: 1.75rem; letter-spacing:-0.01em; }
.section__head p{ margin:0; }

.card{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.card h3{ margin-top:0; }
.cards3{ display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }
.cards2{ display:grid; grid-template-columns: repeat(2, 1fr); gap:16px; }

/* ===== Footer ===== */
.footer{
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 36px 0;
  background: rgba(0,0,0,.18);
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.6fr .8fr .8fr;
  gap:18px;
}
.footerBrand{
  display:flex; align-items:center; gap:12px;
  margin-bottom: 10px;
}
.footerLogo{
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  object-fit: cover;
  background: rgba(255,255,255,.05);
}
.footerLinks{ list-style:none; padding:0; margin:0; display:grid; gap:8px; }
.footerLinks a{ text-decoration:none; color: var(--muted); font-weight:800; }
.footerLinks a:hover{ color: var(--text); text-decoration:underline; }

/* ===== Overlay loading ===== */
.overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.60);
  backdrop-filter: blur(8px);
  display: none;
  z-index: 999;
}
.overlay.show{ display:flex; align-items:center; justify-content:center; padding: 18px; }
.overlayCard{
  width: min(720px, 92%);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(15,15,22,.96);
  box-shadow: var(--shadow);
  padding: 16px;
}
.overlayTop{
  display:flex;
  gap:14px;
  align-items:center;
}
.spinner{
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 4px solid rgba(255,255,255,.12);
  border-top-color: rgba(227,6,19,.95);
  animation: spin 1s linear infinite;
}
@keyframes spin{ to { transform: rotate(360deg); } }

.overlayTitle{ font-weight:1000; font-size: 1.15rem; }
.overlaySub{ margin-top: 2px; }

.progressWrap{
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  overflow:hidden;
  margin-top: 14px;
}
.progressBar{
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(227,6,19,.98), rgba(255,77,77,.88));
  border-radius: 999px;
  transition: width .22s ease;
}
.overlayMeta{
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 10px;
}

/* ===== Cookies ===== */
.cookieBar{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  border-top:1px solid rgba(255,255,255,.14);
  background: rgba(11,11,15,.86);
  backdrop-filter: blur(10px);
  display:none;
  z-index: 1200;
}
.cookieBar__inner{
  padding: 14px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.cookieBar p{ margin:0; color: rgba(255,255,255,.72); max-width: 820px; }
.cookieBar a{ color:#fff; font-weight:900; }
.cookieActions{
  display:flex; gap:10px; flex-wrap:wrap;
}
.cookieModal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display:none;
  z-index: 1300;
}
.cookieModal__panel{
  width: min(720px, 92%);
  margin: 6vh auto;
  background: rgba(15,15,22,.98);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  box-shadow: 0 22px 70px rgba(0,0,0,.45);
  padding: 16px;
}
.cookieModal__head{
  display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
}
.closeX{
  width:44px; height:44px; border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: #fff; cursor:pointer;
}
.cookieGrid{ display:grid; gap:10px; margin-top: 12px; }
.cookieOpt{
  border:1px solid rgba(255,255,255,.14);
  border-radius:16px;
  padding: 12px;
  background: rgba(255,255,255,.04);
}
.cookieOptTop{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
}
.switch{
  display:flex; align-items:center; gap:10px;
  color: rgba(255,255,255,.72);
  font-weight:900;
}
.switch input{ width: 18px; height: 18px; }
.badge{
  font-size:.82rem; padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color:#fff;
}

/* ===== Responsive General ===== */
@media (max-width: 980px){
  .nav{ display:none; }
  .menuBtn{ display:inline-block; }

  .hero__grid{
    display:flex;
    flex-direction:column;
    gap:16px;
  }
  .searchCard{ order:1; position: relative; top: 0; }
  .hero__copy{ order:2; }

  .cards3{ grid-template-columns: 1fr; }
  .cards2{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .assistRow{ grid-template-columns: 1fr; }
}

/* buscador responsive (bonito) */
@media (max-width: 1100px){
  .searchBar{
    grid-template-columns: 1fr 52px 1fr;
    grid-auto-rows: minmax(90px, auto);
  }
  .barCta{ grid-column: 1 / -1; min-height: 64px; }
}
@media (max-width: 560px){
  .searchBar{ grid-template-columns: 1fr; }
  .swapBtn{ min-height: 56px; }
  .barCta{ min-height: 58px; }
}
/* ================================
   VALIDACIÓN / ERRORES (PRO)
================================ */

/* Mensaje bajo cada campo */
.error{
  display:block;
  margin-top: 6px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(227, 6, 19, .55);
  background: rgba(227, 6, 19, .14);
  color: #FFD2D2;            /* rojo claro legible */
  font-weight: 900;
  font-size: .92rem;
  line-height: 1.25;
  box-shadow: 0 10px 24px rgba(227,6,19,.18);
}

/* Ocultar cuando esté vacío */
.error:empty{
  display:none;
}

/* Campo en error (inputs y selects) */
.is-invalid{
  border-color: rgba(227, 6, 19, .85) !important;
  box-shadow: 0 0 0 4px rgba(227, 6, 19, .22) !important;
}

/* En tu layout: inputs dentro de .barControl */
.barField.is-invalid{
  border-color: rgba(227, 6, 19, .55) !important;
  background: rgba(227, 6, 19, .06) !important;
}

/* Mensaje general (abajo del form) */
.formStatus{
  margin-top: 12px;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 1000;
  letter-spacing: .2px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

/* Estado ERROR (rojo notorio) */
.formStatus.is-error{
  border-color: rgba(227, 6, 19, .60);
  background: rgba(227, 6, 19, .14);
  color: #FFD2D2;
  box-shadow: 0 18px 42px rgba(227,6,19,.18);
}

/* Estado OK (verde) por si lo usas */
.formStatus.is-ok{
  border-color: rgba(0, 255, 170, .35);
  background: rgba(0, 255, 170, .10);
  color: #CFFFEF;
}

/* Checkbox en error (consents) */
.check.is-invalid{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(227, 6, 19, .55);
  background: rgba(227, 6, 19, .08);
}
/* =========================================================
   SOLO POSICIÓN / CENTRADO (SIN CAMBIAR DISEÑO)
   Pegar al final del CSS
========================================================= */

/* 1) Evita micro-desbordes que “empujan” todo hacia un lado */
html, body { overflow-x: hidden; }

/* 2) Centrado real del layout (si alguna regla previa lo movió) */
.container{
  margin-left: auto !important;
  margin-right: auto !important;
  width: min(1180px, 92%) !important;
}

/* 3) Centrar HERO y darle un “balance” visual (sin cambiar tamaños) */
.hero{
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.hero__grid{
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
}

/* 4) El buscador estaba quedando visualmente “corridito”.
   Solo lo centramos dentro de su columna sin tocar diseño */
.searchCard{
  margin-left: auto !important;
  margin-right: auto !important;
}

/* 5) La columna derecha (copy) a veces queda pegada al borde.
   Solo ajusta su alineación dentro de su columna */
.hero__copy{
  justify-self: stretch !important;
}

/* 6) Si en algún breakpoint tu grid se “corre”, garantizamos que no haya columnas
   con ancho > contenedor (lo que causa desplazamiento lateral) */
.hero__grid,
.searchBar{
  max-width: 100% !important;
}

/* 7) Topbar y Header también centrados con el mismo container */
.topbar__inner,
.header__inner{
  margin-left: auto !important;
  margin-right: auto !important;
}

/* 8) Opcional suave: en pantallas MUY anchas, se ve más centrado “tipo landing” 
   sin cambiar diseño (solo reduce sensación de que está “a la derecha”) */
@media (min-width: 1500px){
  .container{ width: min(1180px, 86%) !important; }
}

/* =========================================================
   CENTRADO FORZADO (SIN CAMBIAR DISEÑO)
   Pega esto al final del CSS
========================================================= */

/* evita micro overflow que descuadra el centrado */
html, body { overflow-x: hidden; }

/* fuerza centrado REAL del contenedor (aunque algo lo esté empujando) */
.container{
  width: min(1180px, 92%) !important;
  max-width: 1180px !important;

  position: relative !important;
  left: 50% !important;
  transform: translateX(-50%) !important;

  margin: 0 !important; /* importante: si había márgenes raros, los anulamos */
}

/* asegúrate que nada del hero exceda el ancho del contenedor */
.hero__grid,
.searchCard,
.header__inner,
.topbar__inner,
.footer__grid{
  max-width: 100% !important;
}

/* si algún bloque usa 100vw (típico culpable), lo normalizamos */
.topbar,
.header,
.cookieBar,
.overlay{
  width: 100% !important;
}

/* (opcional) si tienes algún elemento usando 100vw dentro del body */
body > *{
  max-width: 100%;
}

