@font-face {
  font-family: 'Hector';
  src: url('/assets/fonts/hector-regular.otf') format('otf');
}
:root {
  --main-bg: #000000;
  --main-white: #fff;
  --main-radius: 2rem;
  --nav-height: 72px;
  --menu-gap: 28px;
}
html, body {
  margin: 0;
  background: #f5f5f5;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  max-width: 100vw;
  overflow-x: hidden; /* 🔒 quita scroll lateral */
  background-color: #ffffff !important; /* fondo blanco */
}

/* Corrige cálculo de anchos */
*,
*::before,
*::after {
  box-sizing: border-box;

}
.wayggo-header {
  position: fixed;;   /* CAMBIE de relative a fixed; */
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;       /* 🔒 nunca más ancho que la pantalla */
  z-index: 1001;
  background: rgba(0, 0, 0, 0.95);
  border-bottom-left-radius: var(--main-radius);
  border-bottom-right-radius: var(--main-radius);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  min-height: var(--nav-height);
}
.wayggo-header__container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: var(--nav-height);
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 36px;
}
.wayggo-logo img {
  height: 34px;
  display: block;
}
.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.main-menu {
  display: flex;
  align-items: center;
  gap: var(--menu-gap);
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-item {
  position: relative;
  z-index: 1;
}
.menu-item a {
  font-family: 'Hector', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  color: var(--main-white);
  text-decoration: none;
  padding: 0 4px;
  line-height: var(--nav-height);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.15s;
}
.menu-item a:hover,
.menu-item a:focus {
  color: #ededed;
  text-decoration: underline;
}
/* Sin icono flecha en categorías escritorio */
.menu-item.has-sub > a::after {
  content: none;
}
/* Submenús horizontales */
.menu-item .submenu-list {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 220px;
  background: var(--main-bg);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  padding: 5px 0 5px 22px;
  margin: 0;
  gap: 20px;
  flex-direction: row;
  list-style: none;
}
.menu-item:hover .submenu-list,
.menu-item:focus-within .submenu-list {
  display: flex;
}
.submenu-list li {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.submenu-list li a {
  font-family: 'Hector', Arial, sans-serif;
  font-size: 1.03rem;
  color: var(--main-white);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 5px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.13s, color 0.15s;
}
.submenu-list li a:hover,
.submenu-list li a:focus {
  background: var(--main-white);
  color: var(--main-bg);
  text-decoration: underline;
}
.download-btn {
  background: var(--main-white);
  color: var(--main-bg);
  font-family: 'Hector', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  padding: 8px 24px;
  border: none;
  border-radius: 25px;
  box-shadow: 0 0.5px 9px rgba(0, 0, 0, 0.06);
  margin-left: 18px;
  cursor: pointer;
  white-space: nowrap;
}
.download-btn:hover,
.download-btn:focus {
  background: #ffd7d7;
  color: var(--main-bg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.09);
}
.wayggo-header__actions {
  display: flex;;
  align-items: center;
  gap: 12px;
  margin-left: 10px;
}
.lang-select {
  display: flex;
  align-items: center;
  position: relative;
  font-family: 'Hector', Arial, Helvetica, sans-serif;
  color: var(--main-white);
  font-weight: 500;
  font-size: 1.02rem;
  cursor: pointer;
  gap: 6px;
  padding: 0 8px;
  height: 46px;
}
.lang-icon {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.lang-label {
  padding: 0 4px;
}
.lang-arrow {
  font-size: 1.13em;
  margin-left: 0.07em;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  transition: color 0.12s;
}
.lang-select:hover .lang-arrow,
.lang-select:focus .lang-arrow {
  color: var(--main-bg);
}
.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 120px;
  background: #fff;
  color: #222;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  border-radius: 0 0 12px 12px;
  padding: 0.7em 1em 0.8em 1.1em;
  z-index: 999;
  list-style: none;
}
.lang-select:hover .lang-dropdown,
.lang-select:focus-within .lang-dropdown {
  display: block;
}
.lang-dropdown li a {
  color: #222;
  text-decoration: none;
  font-size: 1rem;
  font-family: 'Hector', Arial, sans-serif;
  display: block;
  padding: 7px 0;
  border-radius: 6px;
  transition: background 0.11s, color 0.11s;
}
.lang-dropdown li a:hover {
  background: #f4f4f4;
  color: var(--main-bg);
}
.menu-toggle {
  background: none;
  border: none;
  display: none;
  flex-direction: column;
  gap: 4px;
  margin-left: 18px;
  cursor: pointer;
  z-index: 9999;
}
.menu-bar {
  width: 32px;
  height: 3.5px;
  background: var(--main-white);
  border-radius: 2px;
}
.mobile-nav {
  display: none;
}
/* ----------- MOVIL / HAMBURGUESA ----------- */
@media (max-width: 950px) {
  .main-nav,
  .wayggo-header__actions {
    display: none !important;
  }

  /* Topbar móvil: Logo - App - Hamburguesa */
  .wayggo-header__container {
    justify-content: flex-start;
    max-width: 100%;   /* ✅ ya no intenta ocupar 1300px */
    padding: 0 20px;
    height: var(--nav-height);
  }

  .wayggo-logo {
    margin-right: 8px;
    flex: 0 0 auto;
  }

  .download-btn.header-app-btn {
    display: inline-block;
    margin-right: 10px;
    margin-left: 0;
    padding: 4px 11px;
    font-size: .99rem;
    min-width: 92px;
    max-width: 137px;
    height: 36px;
    border-radius: 25px;
  }

  .menu-toggle {
    display: flex !important;
    position: relative;
    margin-left: auto;
    margin-right: 0;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    z-index: 2000;
  }
  .menu-bar {
    width: 32px;
    height: 3.5px;
  }

  /* Menú hamburguesa lateral derecho */
  .mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;                /* Cambia de right: 0 a left: 0 */
    right: auto;            /* Importante: desactiva right */
    width: 300px;
    height: 100vh;
    background: var(--main-bg);
    box-shadow: 5px 0 24px rgba(0,0,0,0.13); /* Sombra a la derecha */
    border-top-right-radius: var(--main-radius);
    border-bottom-right-radius: var(--main-radius);
    border-top-left-radius: 0;      /* Esquinas izquierdas sin curva */
    border-bottom-left-radius: 0;
    transform: translateX(-100%);   /* Inicia oculto a la izquierda */
    transition: transform 0.22s cubic-bezier(.89,0,.17,1);
    z-index: 3004;
    overflow-y: auto;
  }
  .mobile-nav.open {
    transform: translateX(0);
  }
  .mobile-nav-inner {
    padding: 18px 24px 18px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .mobile-nav .wayggo-logo {
    margin-bottom: 20px;
  }
  .mobile-nav .wayggo-logo img {
    height: 30px;
    display: block;
  }
    /* Menú principal: categorías bien juntas */
  .mobile-nav .main-menu {
    gap: 1px !important;
    padding: 0;
    margin: 0 0 10px 0;
    flex-direction: column;
    list-style: none;
  }

  .mobile-nav .menu-item > a {
    font-family: 'Hector', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.07rem;
    color: #fff;
    text-decoration: none;
    padding: 7px 0 7px 0;
    display: flex;
    justify-content: space-between;
    align-items: left;
    background: none;
    border: none;
    border-radius: 0;
    width: 100%;
    cursor: pointer;
    margin: 0;
      line-height: 2.50;
  }

  /* Flechita: solo categorías con submenús */
  .mobile-nav .menu-item.has-sub > a::after {
    content: '▼';
    margin-left: 8px;
    font-size: 1.07rem;
    color: #fff;
    transition: transform 0.2s;
  }
  .mobile-nav .menu-item.open > a::after {
    transform: rotate(180deg);
  }

  /* Listado subcategorías (listado vertical normal, alineado a la izquierda) */
  .mobile-nav .submenu-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
    padding-left: 15px !important;
    margin: 0 !important;
    background: none !important;
    box-shadow: none !important;
    position: static !important; /* asegúrate de que no se posicione absoluto */
  }
  .mobile-nav .menu-item:not(.open) > .submenu-list {
    display: none !important;
  }
  .mobile-nav .submenu-list li {
    margin: 0;
    padding: 0;
  }
  .mobile-nav .submenu-list li a {
    font-family: 'Hector', Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #fff;
    padding: 3px 0 3px 0;
    margin: 0;
    background: none;
    border-radius: 0;
    text-decoration: none;
    width: 100%;
    display: block;
    text-align: left;
    line-height: 2.50;
  }
}
  /* Mostrar subitems solo cuando se clickea */
  .mobile-nav .menu-item:not(.open) > .submenu-list {
    display: none !important;
  }
  /* Subitems con estilo simple y alineados */
  .mobile-nav .submenu-list li a {
    font-family: 'Hector', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    padding: 6px 0 !important;
    margin-left: 0 !important;
    border-radius: 0 !important;
    white-space: normal;
  }
  .mobile-nav .submenu-list li a:hover,
  .mobile-nav .submenu-list li a:focus {
    color: #ffd7d7;
    text-decoration: underline;
    background: none;
  }
  /* Botón grande de descarga dentro menú lateral */
  .mobile-nav .download-btn {
    margin-top: auto;
    width: 100%;
    padding: 14px 0;
    border-radius: 32px;
    font-weight: 700;
    font-size: 1.09rem;
    background: var(--main-white);
    color: var(--main-bg);
    border: none;
    cursor: pointer;
    text-align: center;
  }
  .mobile-nav .download-btn:hover,
  .mobile-nav .download-btn:focus {
    background: #ffd7d7;
    color: var(--main-bg);
  }
  .mobile-nav .lang-select {
    margin-top: 22px;
    font-size: 1rem;
    color: var(--main-white);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }
  .mobile-nav .lang-select svg {
    width: 20px;
    height: 20px;
  }
  .mobile-nav .lang-select:hover,
  .mobile-nav .lang-select:focus {
    text-decoration: underline;
  }



  
/* Bloque principal hero wayggo */
.hero-wayggo {
  padding-top: var(--nav-height);
  position: relative;
  width: 100%;
  min-height: 670px; /* Ajusta la altura para un hero grande */
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 0 0 2rem 2rem;
}

/* Fondo imagen cubre todo */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.56);
}

/* Contenido encima del fondo */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  gap: 0;
  justify-content: space-between;
  align-items: stretch;
  min-height: 420px;
  max-width: 1690px;
  margin: 0 auto;
}
.hero-left {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 52px 0 0 52px;
  color: #fff;
}
.hero-title {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  margin-bottom: 14px;
  margin-top: 0;
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.hero-desc {
  font-size: 1.22rem;
  margin-bottom: 26px;
  line-height: 1.4;
  font-weight: 400;
  max-width: 550px;
}
.hero-actions {
  display: flex;
  gap: 22px;
  margin-bottom: 30px;
}
.btn-primary1 {
  background: #276EF1;
  color: #fff;
  border-radius: 60px;
  border: none;
  padding: 16px 39px;
  font-size: 1.12rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: background 0.13s, color 0.13s;
}
.btn-primary1:hover {
  background: #00AF19;
}
.btn-secondary {
  background: #fff;
  color: #222;
  border-radius: 60px;
  border: none;
  padding: 16px 38px;
  font-size: 1.08rem;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: background 0.11s, color 0.11s;
}
.btn-secondary:hover {
  background: #eee;
  color: #222;
}
.hero-stores {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}
.hero-stores img {
  height: 42px;
}

.hero-right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-width: 440px;
  max-width: 710px;
  margin-left: 12px;
}

/* BLOQUE AZUL ESTILO ORIGINAL */
.promo-offer-inline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: #276EF1;
  color: #fff;
  border-radius: 62px 62px 0 0;
  box-shadow: 2px 8px 22px #6c000033;
  padding: 46px 54px 46px 44px;
  width: 100%;
  max-width: 700px;
  min-width: 410px;
}

.promo-offer-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  flex: 1 1 0;
}

.promo-offer-title {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 2.13rem;
  font-weight: 700;
  line-height: 1.17;
  margin-bottom: 19px;
  text-align: left;
  letter-spacing: -0.015em;
}

.promo-offer-desc {
  font-size: 1.18rem;
  font-weight: 400;
  opacity: 0.93;
  text-align: left;
}

.promo-offer-qr {
  flex: 0 0 auto;
  margin-left: 45px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.promo-offer-qr img {
  width: 164px;
  height: 164px;
  border-radius: 20px;
  display: block;
  background: #fff;
  padding: 7px;
  box-sizing: border-box;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-right {
    min-width: 0;
    max-width: 99vw;
    margin-left: 0;
  }
  .promo-offer-inline {
    padding: 28px 14px 28px 14px;
    border-radius: 33px;
    max-width: 99vw;
    min-width: 0;
  }
  .promo-offer-title {
    font-size: 1.16rem;
    margin-bottom: 12px;
  }
  .promo-offer-qr {
    margin-left: 18px;
  }
  .promo-offer-qr img {
    width: 72px;
    height: 72px;
    padding: 5px;
  }
}

@media (max-width: 700px) {
  .promo-offer-inline {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 17px;
    padding: 18px 7px 18px 11px;
    max-width: 99vw;
  }
  .promo-offer-title {
    font-size: 1.02rem;
    margin-bottom: 8px;
  }
  .promo-offer-qr {
    margin-left: 0;
    margin-top: 16px;
    align-items: flex-start;
  }
  .promo-offer-qr img {
    width: 54px;
    height: 54px;
    padding: 3px;
  }
}
  .promo-footer {
    font-size: .99rem;
  }

/* ---- HERO MOBILE RESET WAYGGO ---- */
/* Por defecto ocultamos hero-mobile en escritorio */
.hero-mobile {
  display: none;
}

/* Rules for mobile screens */
@media (max-width: 700px) {
  /* Ocultar hero de escritorio */
  .hero-wayggo, .hero-content, .hero-left, .hero-right, .promo-offer-inline {
    display: none !important;
  }

  /* Mostrar hero-mobile sólo en móvil */
  .hero-mobile {
    background: #fff;
    width: 100vw;
    padding: 0;
    margin: 0;
    border-radius: 0 0 28px 28px;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-mobile-bg img {
    display: block;
    width: 100vw;
    height: 500px;
    object-fit: cover;
    margin: 0 auto;
    min-height: 200px;
    max-height: 400px;
    box-shadow: 0 2px 10px #0001;
  }

  .hero-mobile-promo {
    background: #276EF1;
    color: #fff;
    border-radius: 0 0 28px 28px;
    text-align: center;
    padding: 30px 18px 21px 18px;
    margin-top: 0;
    margin-bottom: 18px;
  }

  .promo-title {
    font-size: 1.17rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.13;
    letter-spacing: -0.012em;
  }

  .promo-desc {
    font-size: 0.99rem;
    font-weight: 400;
    opacity: 0.97;
  }

  .promo-qr {
    display: none !important; /* Oculta el QR en móviles */
  }

  .hero-mobile-content {
    background: #fff;
    padding: 20px 13px 7px 13px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 0 auto;
    text-align: left;
  }

  .hero-mobile-title {
    font-size: 1.32rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.18;
  }

  .hero-mobile-desc {
    font-size: .91rem;
    color: #202020;
    margin-bottom: 18px;
    margin-top: 0;
    line-height: 1.34;
  }

  .hero-mobile-btn {
    width: 100%;
    padding: 13px 0;
    font-size: 1.09rem;
    border-radius: 26px;
    margin-bottom: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-sizing: border-box;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background 0.13s, color 0.13s;
  }

  .hero-mobile-btn.primary {
    background: #276EF1;
    color: #fff;
  }

  .hero-mobile-btn.secondary {
    background: #fff;
    color: #222;
    border: 1.2px solid #dadada;
  }
}


/* Contenido textual y botones */

.services-section {
  background-color: #f9f9f9;
  padding: 60px 20px 40px 20px;
  border-radius: 0 0 32px 32px;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.services-title {
  font-family: 'Hector', Arial, sans-serif;
  font-weight: bold;
  font-size: 3.3rem;
  line-height: 1.07;
  color: #181818;
  margin: 0 10px 0 10px;
  flex: 0 0 495px;
  letter-spacing: -0.020em;
  min-width: 390px;
  max-width: 500px;
  display: block;
  text-align: left;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px 24px;
  flex-grow: 1;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 6px rgb(0 0 0 / 0.06);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: box-shadow 0.3s ease, opacity 0.3s ease;
}

.service-card:hover,
.service-card:focus {
  box-shadow: 0 8px 18px #276EF1;
  opacity: 0.8;
  outline: none;
}

.service-info {
  flex-grow: 1;
}

.service-name {
  font-family: 'Hector', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

.arrow {
  margin-left: 6px;
  font-size: 1.3rem;
  user-select: none;
}

.service-desc {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #6f6f6f;
}

.service-icon {
  width: 98px;
  height: 60px;
  margin-left: 18px;
  user-select: none;
}

.qr-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(60,60,60,0.62);
  display: none;
  align-items: center; justify-content: center;
  z-index: 20500;
}
.qr-modal.active { display: flex; }

.qr-modal__close {
  position: absolute;
  top: 36px;
  right: calc(50% - 260px);
  background: none;
  border: none;
  color: #3e3e3e;
  font-size: 2.4rem;
  font-weight: 400;
  cursor: pointer;
  line-height: 1;
  z-index: 10;
  padding: 2px 11px 6px 11px;
  border-radius: 50%;
  transition: background .18s;
}
.qr-modal__close:hover { background: #eee; }

.qr-modal__content {
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 10px 42px #0003;
  min-width: 350px; max-width: 90vw;
  padding: 38px 44px 36px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.qr-modal__qr {
  width: 175px;
  height: 175px;
  margin-bottom: 34px;
  border: 1.5px solid #dadada;
  border-radius: 21px;
  background: #fff;
}

.qr-modal__title {
  font-family: 'Hector', Arial, sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #181818;
  text-align: center;
  margin-bottom: 13px;
  line-height: 1.13;
}

.qr-modal__text {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.08rem;
  color: #222;
  text-align: center;
  line-height: 146%;
  margin-bottom: 3px;
}

@media(max-width:600px) {
  .qr-modal__close {
    top: 12px;
    right: 11vw;
    font-size: 2.1rem;
  }
  .qr-modal__content {
    min-width: 0; max-width: 96vw;
    padding: 22px 5vw 18px 5vw;
    border-radius: 22px;
  }
  .qr-modal__qr { width: 115px; height: 115px; }
  .qr-modal__title { font-size: 1.11rem; }
  .qr-modal__text { font-size: .93rem; }
}


/* Contenido textual y botones vista movil*/

@media (max-width: 700px) {
  .services-section {
    padding: 26px 5px 14px 5px !important;
    border-radius: 0 0 26px 26px;
    background: #fff !important;
  }

  .services-container {
    display: block !important;
    padding: 0 !important;
    max-width: 100vw !important;
    margin: 0 !important;
  }

  .services-title {
    font-family: 'Hector', Arial, sans-serif !important;
    font-weight: bold;
    font-size: 2rem !important;
    line-height: 1.07 !important;
    color: #181818 !important;
    letter-spacing: -0.01em !important;
    text-align: left !important;
    margin: 0 0 18px 4px !important;
    max-width: 95vw !important;
  }

  .services-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 13px 11px !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .service-card {
    background: #f8f8f8 !important;
    border-radius: 18px !important;
    padding: 13px 10px 14px 13px !important;
    min-height: 80px !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    position: relative !important;
    cursor: pointer !important;
    transition: opacity 0.18s;
  }

  .service-card:hover { opacity: 0.7; }

  .service-name {
    font-family: 'Hector', Arial, sans-serif !important;
    font-size: 1.20rem !important;
    font-weight: 700 !important;
    margin-bottom: 7px !important;
    display: flex !important;
    align-items: center !important;
    color: #181818 !important;
  }
  .service-name .arrow {
    margin-left: 9px !important;
    font-size: 1.1rem !important;
  }

  .service-desc {
    font-family: 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 0.89rem !important;
    color: #646464 !important;
    font-weight: 400 !important;
    margin-bottom: 0 !important;
    margin-top: -2px !important;
  }

  .service-icon {
    width: 100px !important;
    height: 100px !important;
    object-fit: contain !important;
    border-radius: 12px !important;
    margin-left: 0 !important;
    margin-top: 12px !important;
    align-self: flex-end !important;
  }
}


.join-wayggo-section {
  background: #fff;
  padding: 38px 0 64px 0;
  border-radius: 0 0 32px 32px;
}

.join-wayggo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TÍTULO CON HIGHLIGHT ANIMADO */
.join-title {
  font-family: 'Hector', Arial, sans-serif;
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 1.1;
  color: #000;
  text-align: center;
  margin: 0 0 38px 0;
  letter-spacing: -0.017em;
  position: relative;
}
.highlight {
  background: linear-gradient(110deg, #00AF19 60%, transparent 90%);
  border-radius: 0.18em;
  padding: 0 .18em;
  font-style: inherit;
  animation: highlight-flicker 2.1s infinite alternate;
}
@keyframes highlight-flicker {
  0% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* GRID DE CARDS */
.join-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 24px;
}

.join-card {
  background: #f8f8f8;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 23px 22px 20px;
  min-height: 110px;
  cursor: pointer;
  transition: box-shadow 0.14s, opacity 0.18s;
}
.join-card:hover {
  box-shadow: 0 8px 20px #b7ca0020;
  opacity: 0.73;
}

.join-card__info {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
}

.join-card__title {
  font-family: 'Hector', Arial, sans-serif;
  font-size: 1.26rem;
  font-weight: 700;
  color: #131313;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.join-arrow {
  width: 1.2em;
  height: auto;
  margin-left: 7px;
}

.join-card__desc {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  color: #686868;
  font-weight: 400;
}

.join-card__icon {
  width: 100px;
  height: 74px;
  object-fit: contain;
  border-radius: 14px;
  margin-left: 18px;
}

@media (max-width: 900px) {
  .join-title {
    font-size: 1.75rem;
  }
  .join-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .join-card {
    padding: 17px 10px 16px 10px;
    min-height: 75px;
  }
  .join-card__icon {
    width: 37px;
    height: 37px;
    margin-left: 9px;
  }
  .join-card__title {
    font-size: 1.01rem;
    margin-bottom: 6px;
  }
  .join-card__desc {
    font-size: 0.91rem;
  }
}

/* MODAL QR REUTILIZABLE */
.qr-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(40,40,40,0.62);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20500;
}
.qr-modal.active { display: flex; }

.qr-modal__close {
  position: absolute;
  top: 34px;
  right: calc(50% - 220px);
  background: none;
  border: none;
  color: #383838;
  font-size: 2.1rem;
  font-weight: 400;
  cursor: pointer;
  z-index: 10;
  padding: 2px 11px 8px 11px;
  border-radius: 50%;
  transition: background .12s;
}
.qr-modal__close:hover { background: #ececec; }

.qr-modal__content {
  background: #fff;
  border-radius: 36px;
  box-shadow: 0 12px 44px #0003;
  min-width: 320px; max-width: 88vw;
  padding: 30px 38px 31px 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.qr-modal__qr {
  width: 154px;
  height: 154px;
  margin-bottom: 31px;
  border: 1.3px solid #dfdfdf;
  border-radius: 16px;
  background: #fff;
}

.qr-modal__title {
  font-family: 'Hector', Arial, sans-serif;
  font-size: 1.48rem;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 13px;
  line-height: 1.18;
}

.qr-modal__text {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.05rem;
  color: #222;
  text-align: center;
  line-height: 144%;
}

@media(max-width:650px) {
  .qr-modal__close {
    top: 11px;
    right: 7vw;
    font-size: 2rem;
  }
  .qr-modal__content {
    min-width: 0; max-width: 99vw;
    padding: 19px 5vw 15px 5vw;
    border-radius: 19px;
  }
  .qr-modal__qr { width: 90px; height: 90px; }
  .qr-modal__title { font-size: .99rem; }
  .qr-modal__text { font-size: .93rem; }
}


/* ¡Únete a wayggo bloque movil */

@media (max-width: 700px) {
  .join-wayggo-section {
    padding: 18px 0 32px 0 !important;
    border-radius: 0 0 18px 18px !important;
  }

  .join-wayggo-container {
    padding: 0 6px !important;
    max-width: 100vw !important;
  }

  .join-title {
    font-size: 2.25rem !important;
    line-height: 1.09 !important;
    margin: 0 0 17px 4px !important;
    text-align: left !important;
  }
  .highlight {
    padding: 0 .13em !important;
    font-size: inherit !important;
    background-size: 100% 45% !important;
  }

  .join-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 11px !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .join-card {
    padding: 12px 10px 12px 13px !important;
    min-height: 68px !important;
    border-radius: 14px !important;
    flex-direction: row !important;
    align-items: center !important;
  }
  .join-card__icon {
    width: 94px !important;
    height: 74px !important;
    margin-left: 8px !important;
    border-radius: 7px !important;
  }
  .join-card__title {
    font-size: 1.50rem !important;
    margin-bottom: 5px !important;
  }
  .join-card__desc {
    font-size: .82rem !important;
  }
}


.features-wayggo {
  max-width: 1200px;
  margin: 0 auto 0 auto;
  padding: 0 28px 60px 28px;
}

.features-title {
  font-family: 'Hector', Arial, sans-serif;
  font-size: 2.90rem;
  text-align: center;
  font-weight: 700;
  color: #181818;
  letter-spacing: -0.021em;
  margin-bottom: 33px;
  line-height: 1.1;
}

.features-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  background: #f8f8f8;
  border-radius: 20px;
  padding: 24px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 329px;
  transition: box-shadow 0.19s, opacity 0.18s;
  box-shadow: none;
  cursor: pointer;
}

.feature-card:hover {
  box-shadow: 0 8px 22px #d1e0cf38;
  opacity: 0.82;
}

.feature-img {
  width: 88px;
  height: 88px;
  margin-bottom: 18px;
  margin-top: 7px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.feature-img img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 13px;
  background: #fff;
}

.feature-heading {
  font-family: 'Hector', Arial, sans-serif;
  font-size: 1.30rem;
  font-weight: 700;
  color: #151515;
  margin-bottom: 13px;
}

.feature-desc {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: .99rem;
  color: #666;
  font-weight: 400;
  line-height: 1.36;
}

@media (max-width: 1000px) {
  .features-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .features-wayggo {
    padding: 0 12px 46px 12px;
  }
  .feature-card {
    min-height: unset;
    padding: 18px 14px 17px 14px;
  }
  .feature-img,
  .feature-img img {
    width: 66px;
    height: 66px;
  }
  .features-title { font-size: .42rem; }
}

@media (max-width: 620px) {
  .features-wayggo .features-title {
    padding: 0 4px 28px 4px;
    text-align: center !important;
    font-size: 1.90rem !important;
  }
  .feature-heading { font-size: 1.30rem; }
  .feature-desc { font-size: 1rem; }
  .feature-img,
  .feature-img img { width: 100px; height: 92px; }
  }

.bloque-seguridad-waygo {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  background: #fff;
  border-radius: 0 0 32px 32px;
}

/* Flex: imagen izquierda, contenido derecho */
.bloque-seguridad-flex {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.bloque-seguridad-img {
  flex: 0 0 38vw;
  max-width: 490px;
  min-width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bloque-seguridad-img img {
  width: 100%;
  max-width: 490px;
  max-height: 430px;
  object-fit: cover;
  border-radius: 28px;
}

/* Contenido derecho */
.bloque-seguridad-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Título highlight animado */
.highlight-title {
  font-family: 'Hector', Arial, sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  color: #181818;
  margin-bottom: 36px;
  letter-spacing: -.02em;
  text-align: left;
  line-height: 1.12;
}
.highlight {
  background: linear-gradient(120deg, #00AF19 60%, transparent 98%);
  border-radius: 0.18em;
  padding: 0 0.18em;
  animation: highlight-flicker 2.3s infinite alternate;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@keyframes highlight-flicker {
  0% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Grid con dos columnas */
.bloque-seguridad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 50px;
}

/* Opciones */
.bloque-seguridad-item strong {
  font-family: 'Hector', Arial, sans-serif;
  font-size: 1.21rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}
.bloque-seguridad-item p {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  color: #555;
  margin: 0;
  line-height: 1.38;
}

/* ADAPTACIÓN MÓVIL */
@media (max-width: 820px) {
  .bloque-seguridad-flex {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .bloque-seguridad-img {
    max-width: 100%;
    width: 100%;
    margin-bottom: 20px;
    justify-content: flex-start;
  }
  .bloque-seguridad-img img {
    max-width: 100%;
    max-height: 320px;
    border-radius: 18px;
  }
  .bloque-seguridad-content {
    width: 100%;
  }
  .highlight-title {
    font-size: 1.7rem;
    margin-bottom: 24px;
    text-align: left;
    line-height: 1.12;
  }
  .bloque-seguridad-grid {
    grid-template-columns: 1fr 1fr;
    gap: 17px 24px;
  }
  .bloque-seguridad-item strong {
    font-size: 1.05rem;
    margin-bottom: 8px;
    text-align: left;
  }
  .bloque-seguridad-item p {
    font-size: .95rem;
    text-align: left;
  }
}


body {
  background: #fafbfc;
  font-family: 'Hector', Arial, sans-serif;
}

.servicio-seleccion {
  max-width: 1350px;
  margin: 0 auto 60px;
  padding: 40px 16px 30px;
}

.servicio-seleccion__titulo {
    font-family: 'Hector', Arial, sans-serif;
    font-size: 2.90rem;
    text-align: center;
    font-weight: 700;
    color: #181818;
    letter-spacing: -0.021em;
    margin-bottom: 33px;
    line-height: 2.1;
}

.servicio-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 28px;
}

.servicio-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: none;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  width: 360px;
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.servicio-card:hover {
  box-shadow: 0 0 22px #276EF1;
}

.servicio-card__imagen img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto 16px auto; /* Centrado horizontal y menos margen inferior */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;            /* Altura máxima para la imagen (ajusta según tu diseño) */
  min-height: 90px;
  overflow: visible;
}

.servicio-card__nombre {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: black;
}

.servicio-card__subtitulo {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #000;
}

.servicio-card__desc {
  color: #444;
  font-size: 0.97rem;
  margin-bottom: 14px;
}

.servicio-card__horario {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
}

.badge-horas {
  display: inline-block;
  background-color: #00AF19;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.1;
  padding: 5px 18px 4px 18px;
  border-radius: 7px;
  margin-right: 9px;
  box-shadow: 0 2px 8px -2px #38d4433a;
  transform: skew(-11deg, -2deg); /* Inclinado como en la captura */
  letter-spacing: 0.01em;
  border: none;
  font-family: inherit;
}


.servicio-detalle {
  width: 100%;
  margin-bottom: 10px;
  border-top: 1px solid #eee;
  padding-top: 7px;
}

.servicio-detalle summary {
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  outline: none;
  color: #202020;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 8px 0;
  user-select: none;
}

.icon-toggle {
  width: 14px;
  height: 14px;
  border-left: 2px solid #202020;
  border-bottom: 2px solid #202020;
  transform: rotate(-45deg);
  margin-left: 10px;
  transition: transform 0.2s ease;
}

details[open] .icon-toggle {
  transform: rotate(45deg);
}

.servicio-detalle ul {
  margin: 4px 0 8px 18px;
  padding: 0;
  color: #555;
  font-size: 0.95rem;
}

.servicio-detalle li {
  margin-bottom: 3px;
}

.btn-rojo {
  background-color: #276EF1;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 43px;
  padding: 15px 0;
  width: 100%;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 0 10px #000000;
  cursor: pointer;
  margin: 10px 0 6px;
  display: inline-block;
}

.btn-rojo:hover {
  background-color: #000000;
}

.btn-outline {
  color: #000;
  border: 1.5px solid #000;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 43px;
  width: 100%;
  padding: 14.5px 0;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-outline:hover {
  background-color: #f0f0f0;
}

/* Responsive */

@media (max-width: 480px), (max-width: 650px) {
  .servicio-card {
    width: 96vw;
    min-width: 0;
    max-width: 100vw;
    margin: 0 auto 16px auto;
    padding: 14px 7px 13px 7px;
    border-radius: 18px;
    box-shadow: 0 0 7px #eee, 0 1px 6px #ff000025;
  }
  .servicio-card__imagen {
    max-width: 100%;
    height: 68px !important;
    min-height: 0;
    margin: 0 auto 7px auto;
    margin-top: 13px !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .servicio-card__imagen img {
    height: 52px !important;
    max-width: 92vw;
    border-radius: 11px;
    margin: 0 auto;
    display: block;
    object-fit: contain;
  }
  .servicio-card__nombre {
    font-size: 1.02rem;
    margin-bottom: 2px;
    font-weight: 700;
  }
  .servicio-card__subtitulo {
    font-size: 0.92rem;
    margin-bottom: 4px;
    font-weight: 700;
  }
  .servicio-card__desc {
    font-size: 0.82rem;
    margin-bottom: 7px;
  }
  .servicio-card__horario {
    font-size: 0.89rem;
    margin-bottom: 8px;
  }
  .badge-horas {
    font-size: 0.88rem;
    padding: 2.5px 10px 2.5px 10px;
    border-radius: 6px;
    margin-right: 5px;
  }
  .servicio-detalle {
    margin-bottom: 5px;
    padding-top: 2px;
  }
  .servicio-detalle summary {
    font-size: 1rem;
    padding: 6px 0 4px;
  }
  .btn-rojo,
  .btn-outline {
    font-size: 0.95rem;
    padding: 12px 0;
    margin-top: 10px;
    margin-bottom: 2.5px;
    border-radius: 29px;
  }
  .servicio-seleccion__titulo {
    font-size: 1.58rem;
    line-height: 1.15;
    margin-bottom: 28px;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.03em;
  }
}


.city-block {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 40px 80px;
  box-sizing: border-box;
}

.city-block__title {
  font-size: 2.55rem;
  font-weight: 500;
  color: #111;
  text-align: center;
  line-height: 1.22;
  font-family: 'Hector', Arial, Helvetica, sans-serif;
  letter-spacing: -0.028em;
  margin: 0 auto;
  padding: 0;
}

.city-block__link {
  color: #3f95ce;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}
.city-block__link:hover,
.city-block__link:focus {
  color: #ff0000;
  text-decoration: none;
}

/* Efecto 'highlight' usando SVG como fondo */
.highlight {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='388' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M386 24c-64 3-211 8-341 0 61 6 174 14 300 14-37 2-148 4-343-6' stroke='%2300AF19' stroke-width='48'/%3E%3C/svg%3E");
  padding: 0 5px 10px;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: 100% 70%;
  color: #000000;
  font-weight: 700;
  border-radius: 6px;
}

.highlight2 {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='388' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M386 24c-64 3-211 8-341 0 61 6 174 14 300 14-37 2-148 4-343-6' stroke='%2300AF19' stroke-width='48'/%3E%3C/svg%3E");
  padding: 0 5px 10px;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: 100% 70%;
  color: #000000;
  font-weight: 700;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 820px) {
  .city-block {
    padding: 0 18px 38px;
  }
  .city-block__title {
    font-size: 1.25rem;
    line-height: 1.32;
    padding: 0;
  }
}



.wayggo-drive-block {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto 52px;
  padding: 0 38px 64px 38px;
  box-sizing: border-box;
}

.wayggo-drive-grid {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 0 56px;
  align-items: center;
}

.wayggo-drive-img {
  border-radius: 28px;
  overflow: hidden;
  width: 100%;
  height: 430px;
  background: #f7f7f8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wayggo-drive-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

.wayggo-drive-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 23px;
  min-width: 0;
}

.wayggo-drive-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.12;
  color: #111;
  margin-bottom: 7px;
  font-family: 'Hector', Arial, Helvetica, sans-serif;
}

.wayggo-drive-subtitle {
  font-size: 1.02rem;
  color: #5a5a5a;
  font-weight: 400;
  margin-bottom: 6px;
}

.wayggo-drive-btn {
  display: inline-block;
  background: #fff;
  border: 1.5px solid #dddddd;
  border-radius: 26px;
  font-family: 'Hector', Arial, sans-serif;
  font-size: 1.16rem;
  font-weight: 600;
  color: #111;
  padding: 13px 33px;
  text-align: center;
  margin-bottom: 23px;
  transition: border .18s, box-shadow .18s;
  box-shadow: 0 1.5px 8px 0 #1111;
  cursor: pointer;
}
.wayggo-drive-btn:hover,
.wayggo-drive-btn:focus {
  border-color: #000;
  box-shadow: 0 3px 16px -5px #0002;
}

.wayggo-drive-qr-group {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
}

.wayggo-drive-qr {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 7px;
}
.wayggo-drive-qrtext {
  font-size: 1.18rem;
  color: #141414;
  font-family: 'Hector', Arial, Helvetica, sans-serif;
  font-weight: 500;
  line-height: 1.23;
}

@media (max-width: 1100px) {
  .wayggo-drive-img { height: 240px; border-radius: 14px; }
  .wayggo-drive-img img { border-radius: 14px; }
  .wayggo-drive-title { font-size: 1.65rem; }
  .wayggo-drive-content { gap: 12px; }
  .wayggo-drive-qr { width: 63px; height: 63px; }
  .wayggo-drive-qrtext { font-size: 0.96rem; }
}
/* Ocultar bloque escritorio en móviles */
@media (max-width: 767px) {
  .wayggo-drive-block {
    display: none !important;
  }
}
/* Ocultar bloque móvil en escritorio */
@media (min-width: 768px) {
  .wayggo-drive-block-mobile {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .wayggo-drive-block-mobile {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 5px 28px #0000000c, 0 1px 3px #00000018;
    margin: 0 auto 30px;
    max-width: 410px;
    padding: 0 0 18px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  .wayggo-drive-img-mobile {
    width: 90vw;
    max-width: 370px;
    margin: 0 auto;
    margin-top: 18px;
    aspect-ratio: 1/1;
    border-radius: 18px;
    overflow: hidden;
    background: #f6f6f9;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wayggo-drive-img-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    display: block;
  }
  .wayggo-drive-content-mobile {
    margin: 0 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .wayggo-drive-title-mobile {
    font-size: 1.185rem;
    font-weight: 700;
    margin: 15px 0 6px 0;
    color: #111;
    font-family: 'Hector', Arial, Helvetica, sans-serif;
    text-align: center;
    letter-spacing: -0.015em;
  }
  .wayggo-drive-subtitle-mobile {
    font-size: 0.97rem;
    color: #6a6b6e;
    font-weight: 400;
    margin-bottom: 12px;
    text-align: center;
  }
  .wayggo-drive-btn-mobile {
    display: block;
    width: 100%;
    padding: 15px 0;
    background: #276EF1;
    color: #fff;
    border-radius: 28px;
    border: none;
    font-size: 1.08rem;
    font-family: 'Hector', Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 18px;
    margin-top: 0;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 6px #ff000020;
    transition: background .14s;
  }
  .wayggo-drive-btn-mobile:hover,
  .wayggo-drive-btn-mobile:focus {
    background: #00AF19;
  }

}



body { background: #fffee9; }

/* Main layout */
.impacto-wayggo {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px 0 0 0;
  background: #fffee9;
  min-height: 300px;
  background-color: #ffffff !important; /* fondo blanco */
}

/* Content section */
.impacto-central {
  text-align: center;
  position: relative;
background-color: #ffffff !important; /* fondo blanco */
}

.impacto-badge {
  display: inline-block;
  background: #141414;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 999px;
  padding: 8px 34px;
  margin-bottom: 18px;
}

.impacto-title {
  font-family: 'PP Agrandir', Poppins, Arial, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #141414;
  margin: 18px 0 15px 0;
  line-height: 1.13;
}

.impacto-desc {
  font-size: 1.17rem;
  color: #141414;
  font-family: Poppins, Arial, sans-serif;
  margin-bottom: 23px;
  font-weight: 500;
}

.impacto-link {
  font-family: Poppins, Arial, sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  color: #141414;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
}

.impacto-arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 8h12M10 4l4 4-4 4' stroke='%23141414' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.impacto-link-highlight {
background: linear-gradient(110deg, #00AF19 60%, transparent 90%);
  border-radius: 0.18em;
  padding: 0 .18em;
  font-style: inherit;
  animation: highlight-flicker 2.1s infinite alternate;
}
@keyframes highlight-flicker {
  0% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Floating cards */
.impacto-card {
  position: absolute;
  width: 154px;
  height: 154px;
  background: #fff;
  box-shadow: 0 7px 38px 0 rgba(0,0,0,0.10);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: Poppins, Arial, sans-serif;
  user-select: none;
  z-index: 2;
}

.card-num {
  font-size: 2.7rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.card-label {
  font-size: 1.18rem;
  color: #141414;
}

/* Positions and colors */
.card-calificacion {
  top: -10px;
  left: 7vw;
  transform: rotate(8deg);
  background: #e8fefd;
}
.card-seguridad {
  top: 102px;
  left: 10vw;
  transform: rotate(-13deg);
  background: #faf7ff;
}
.card-premios {
  top: 0;
  right: 13vw;
  transform: rotate(10deg);
  background: #e9fafc;
}

/* Responsive */
@media (max-width: 950px) {
  .impacto-wayggo { min-height: 440px; }
  .impacto-title { font-size: 2rem;}
  .impacto-card { width: 110px; height: 110px; border-radius: 17px; }
  .card-calificacion { left: 5vw; top: -60px; }
  .card-seguridad { display: none; }
  .card-premios { right: 5vw; top: -60px; }
}






.reviews-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Arial", sans-serif;
  position: relative;
}

.reviews-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
}

.review-card {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.review-user {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
}

.avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #276EF1;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
}

.name {
  font-weight: 600;
  font-size: 18px;
  color: #000;
  display: block;
}

.date {
  font-size: 14px;
  color: #777;
}

.review-text {
  font-size: 17px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 20px;
}

.stars span {
  color: #00AF19;
  font-size: 22px;
  margin-right: 2px;
}

/* ==== Botones Swiper personalizados ==== */
.swiper-button-next,
.swiper-button-prev {
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  color: #000;
}





.cta-wrap {
  max-width: 1400px;
  margin: 30px auto;
  padding: 30px;
}

.cta-card {
  background: #f6f6f6;
  border-radius: 20px;
  padding: 48px 36px;
  box-shadow: 0 6px 24px rgba(16,24,40,0.06);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
}

.cta-title {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 28px 0;
}

.steps {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  margin-bottom: 36px;
}

.step {
  flex: 1;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step .num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(16,24,40,0.06);
  font-size: 20px;
  color: #111;
  flex-shrink: 0;
}

.step .title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px 0;
}

.step .desc {
  margin: 0;
  color: #666;
  font-size: 15px;
}

.download-row {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 8px;
}

.qr {
  width: 140px;
  height: 140px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 40px rgba(16,24,40,0.06);
  flex-shrink: 0;
}

.qr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-text h3 {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
}

.download-text p {
  margin: 8px 0 0 0;
  color: #666;
  font-size: 15px;
}

.mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup img {
  width: 100%;
  max-width: 380px;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(16,24,40,0.12);
}

/* Responsive */
@media (max-width: 1100px) {
  .cta-grid {
    grid-template-columns: 1fr 360px;
    gap: 30px;
  }
  .cta-title { font-size: 40px; }
  .download-text h3 { font-size: 28px; }
}

@media (max-width: 820px) {
  .cta-grid { grid-template-columns: 1fr; }
  .mockup { order: -1; margin-bottom: 20px; }
  .cta-title { font-size: 32px; text-align: center; }
  .steps { justify-content: center; flex-wrap: wrap; gap: 20px; }
  .step { max-width: 300px; }
  .download-row { flex-direction: column; gap: 12px; }
  .download-text h3 { font-size: 26px; text-align: center; }
  .download-text p { text-align: center; }
}



/* Variables base (ajústalas si usas otras fuentes/colors) */
:root{
  --bg: #f8f8f8;
  --card-radius: 14px;
  --accent: #276EF1;
  --muted: #666666;
  --container-w: 1200px;
}

/* Contenedor principal */
.rating-section{
  background: transparent;
  padding: 0 16px;
}

/* Caja con fondo redondeado */
.rating-container{
  max-width: var(--container-w);
  margin: 28px auto;
  background: var(--bg);
  border-radius: var(--card-radius);
  padding: 28px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center; /* centra verticalmente la derecha con la izquierda */
  gap: 20px;
  box-sizing: border-box;
}

/* IZQUIERDA */
.rating-left{
  display: flex;
  flex-direction: column;
  justify-content: center; /* hace que botón quede centrado verticalmente */
  gap: 18px;
  min-width: 300px;
  flex: 0 0 42%;
}

.left-top{
  display: flex;
  align-items: center;
  gap: 20px;
}

.wayggo-logo{
  width: 180px; /* tamaño logo (ajusta si lo necesitas) */
  height: auto;
  display: block;
}

.left-title{
  font-family: "Yango Text", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.12;
  color: #111;
  font-weight: 500;
}

/* Botón */
.btn-download{
  display: inline-block;
  width: 190px;
  text-align: center;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  align-self: start; /* lo deja alineado al inicio de la columna */
}

.btn-download:hover{
  transform: translateY(-3px);
  background: #276EF1;
}

/* DERECHA (calificaciones) */
.rating-right{
  display:flex;
  align-items:center;
  gap: 72px; /* separación entre AppStore y Play */
  flex: 0 0 55%;
  justify-content: flex-end;
  box-sizing: border-box;
}

/* Cada item de calificación */
.rating-item{
  display:flex;
  align-items:center;
  gap: 18px;
  min-width: 220px;
}

/* Iconos de tienda */
.store-icon{
  width: 56px;
  height: auto;
  display:block;
  filter: none;
}

/* Detalles (estrellas y score) */
.rating-details{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

/* Estrellas (fila) */
.rating-stars{
  display:flex;
  gap:6px;
  margin-bottom:6px;
  align-items:center;
}

/* tamaño estrella */
.star{
  width:20px;
  height:20px;
  fill: #00AF19; /* dorado */
  display:block;
}

/* fila de score + reviews */
.score-row{
  display:flex;
  align-items:center;
  gap:12px;
}

/* número grande */
.score{
  font-size: 34px;
  font-weight: 700;
  color: #111;
  line-height: 1;
}

/* texto reviews */
.reviews{
  color: var(--muted);
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 920px){
  .rating-container{ flex-direction: column; align-items: stretch; gap:20px; padding:20px; }
  .rating-left{ flex: none; width:100%; }
  .rating-right{ justify-content: flex-start; flex-wrap:wrap; gap:28px; width:100%; }
  .btn-download{ align-self:flex-start; }
}

@media (max-width: 480px){
  .yango-logo{ width: 140px; }
  .left-title{ font-size: 16px; }
  .score{ font-size: 28px; }
  .store-icon{ width:48px; }
  .star{ width:18px; height:18px; }
}



/* Sección */
.about-us {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fdfbe8;   /* mismo tono que tu diseño */
  padding: 80px 60px;    /* margen general */
  gap: 40px;
  background-color: #ffffff !important; /* fondo blanco */
}

.about-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch; /* hace que la imagen tenga la misma altura que la columna de texto */
}

/* Contenido */
.about-us__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #000;
}

.about-us__text {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

/* Lista */
.about-us__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.about-us__list li {
  margin-bottom: 28px;
  position: relative;
  padding-left: 20px;
}

.about-us__list li::before {
  content: "•";
  color: #276EF1;
  font-size: 28px;
  position: absolute;
  left: 0;
  top: 0;
}

.about-us__list-title {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
}

.about-us__list-text {
  display: block;
  font-size: 16px;
  color: #555;
}

/* Botón */
.btn-primary {
  display: inline-block;
  background: #276EF1;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #cc0000;
  transform: translateY(-2px) scale(1.05);
}

/* Imagen */
.about-us__image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ajusta la imagen para cubrir la altura total */
  border-radius: 20px;
}

/* Responsive */
@media(max-width: 992px) {
  .about-us {
    padding: 40px 20px; /* menos padding en móviles */
  }

  .about-us__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Imagen primero */
  .about-us__image {
    order: -1; /* fuerza la imagen a ir arriba */
    text-align: center;
  }

  .about-us__image img {
    height: auto;
    max-height: 360px; /* controlamos altura */
    width: 100%;
    object-fit: cover;
  }

  .about-us__title {
    font-size: 28px;
    text-align: left;
  }

  .about-us__text {
    font-size: 16px;
    text-align: left;
  }

  .about-us__list-title {
    font-size: 20px;
  }

  .about-us__list-text {
    font-size: 14px;
  }

  .btn-primary {
    display: block;
    margin: 20px auto 0; /* botón centrado en móvil */
    text-align: center;
  }
}








/* FAQ */
.faq {
  background: #fdfbe8;
  padding: 80px 40px;
  border-radius: 20px;
  background-color: #ffffff !important; /* fondo blanco */
}

.faq__title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #000;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq__item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.faq__item:hover {
  transform: translateY(-5px);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq__icon {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
  color: #276EF1;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: 300px;
  padding: 15px 20px 25px;
}

/* Botón */
.faq__btn-container {
  text-align: center;
  margin-top: 40px;
}

.btn-primary {
  background: #276EF1;
  color: #fff;
  padding: 12px 25px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #276EF1;
  transform: scale(1.05);
}

/* Modal */
.faq-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.faq-modal__content {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  width: 100%;
  max-width: 550px;
  position: relative;
  animation: zoomIn 0.5s ease;
}


@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.faq-modal__close {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
  background: #fafafa;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-group label {
  position: absolute;
  top: -8px;
  left: 15px;
  font-size: 14px;
  background: #fff;
  padding: 0 6px;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .faq-modal__content {
    width: 100%;
    max-width: 100%;
    padding: 25px 20px;
    border-radius: 15px;
    box-sizing: border-box;
    overflow-x: hidden; /* Evita el scroll lateral */
  }



  .faq-modal__form select {
  width: 100%;        /* Que ocupe todo el ancho del contenedor */
  max-width: 100%;    /* No más ancho que su padre */
  box-sizing: border-box;
  white-space: nowrap; /* Evita que las opciones rompan el layout */
}

/* Bloquear cualquier desbordamiento lateral en el modal */
.faq-modal {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Select siempre al 100% */
.faq-modal__form select {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}


#topic {
  display: block;
  width: 100%;        /* ocupa todo el ancho del bloque */
  max-width: 100%;    /* nunca más ancho que su padre */
  box-sizing: border-box;
  overflow: hidden;   /* evita que se salga */
  text-overflow: ellipsis; /* corta texto largo con ... */
  white-space: nowrap; /* evita salto de línea extraño */
  -webkit-appearance: none; /* quita estilos raros en iOS */
  -moz-appearance: none; 
  appearance: none;
}



  .form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 5px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
  background: #fafafa;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}



#topic {
  width: 100%;
  padding: 5px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
}
}


/* Modal de éxito */
.success-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1100;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.success-modal__content {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  animation: fadeIn 0.4s ease;
}

.success-modal__content h3 {
  margin-bottom: 15px;
  font-size: 22px;
  color: #28a745;
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.8);}
  to {opacity: 1; transform: scale(1);}
}






/* Contenedor general */
.download-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: transparent; /* No ocupa todo el contenedor con color */
}

/* Bloque centrado */
.download-block {
  background: #276EF1; /* Fondo Wayggo (bloque en rojo) */
  border-radius: 40px;
  padding: 40px 66px;
  max-width: 750px; /* El bloque no ocupa todo el ancho */
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  animation: fadeInUp 0.8s ease;
}

/* QR */
.download-qr img {
  width: 210px;
  height: 210px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Título */
.download-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

/* Subtítulo */
.download-subtitle {
  font-size: 16px;
  color: #f5f5f5;
  margin-bottom: 25px;
}

/* Botón */
.btn-download1 {
  display: inline-block;
  background: #fff;
  color: #276EF1;
  padding: 12px 25px;
  border-radius: 10px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-download1:hover {
  background: #f5f5f5;
  transform: scale(1.05);
}

/* Animación */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .download-block {
    padding: 30px 20px;
    max-width: 90%;
    border-radius: 25px;
  }

  .download-title {
    font-size: 24px;
  }

  .download-subtitle {
    font-size: 14px;
  }

  .download-qr img {
    width: 150px;
    height: 150px;
  }
}





/* footer.css — estilos del footer Wayggo */

/* Variables (ajusta si quieres) */
:root{
  --wg-bg: #000;         /* fondo principal del footer */
  --wg-contrast: #fff;   /* texto */
  --wg-accent: #276EF1;  /* color acento para carro / botones */
  --wg-strip-h: 90px;    /* altura de la franja donde va la animación */
}

/* Footer general */
.wg-footer{
  background: var(--wg-bg);
  color: var(--wg-contrast);
  font-family: "YS Text", Arial, sans-serif;
  overflow: hidden;
  border-top-left-radius: 20px;   /* esquina superior izquierda */
  border-top-right-radius: 20px;  /* esquina superior derecha */
  overflow: hidden;               /* para que nada sobresalga */
}

/* Contenedor interior */
.wg-footer__container{
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 24px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

/* Brand */
.wg-footer__brand{
  display: flex;
  flex-direction: column; /* apila logo y badges verticalmente */
  align-items: flex-start; /* alinea a la izquierda, puedes cambiar a center si quieres centrado */
  gap: 12px; /* espacio entre logo y badges */
}

.wg-logo-img{
  width: 200px;
  height: auto;
  display: block;
}

/* Badges */
.wg-store-badges{
  display: flex;
  gap: 12px; /* espacio entre badges */
  flex-wrap: nowrap;
}

.wg-store-badges img{
  width: 120px;
  height: auto;
  display:block;
}

/* Columns */
.wg-footer__cols{
    display: flex;              /* usamos flex para distribuir columnas */
  flex-wrap: wrap;            /* que bajen a la siguiente línea en móvil */
  gap: 40px;                  /* espacio entre columnas */
  flex: 1;                    /* que ocupe el espacio restante al lado del logo */
  margin-left: 40px;          /* separa las columnas del logo */
}

/* Cada columna */
.wg-col {
  flex: 1;                 /* cada columna ocupa el mismo ancho disponible */
  display: flex;
  flex-direction: column;   /* apila título y lista */
}

.wg-col h4{
  font-size: 14px;
  margin: 0 0 10px;
  font-weight: 600;
  color: var(--wg-contrast);
}

.wg-col ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.wg-col a{
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 15px;
  display: block;
  margin-bottom: 8px;
  transition: color .18s ease;
}

.wg-col a:hover{ color: var(--wg-accent); }

/* Social / legal area */
.wg-footer__bottom-left{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  flex-wrap:wrap;
}

.wg-social {
  display: flex;
  gap: 12px;           /* espacio entre íconos */
  align-items: center;  /* alineación vertical */
  margin-right: 8px;
}

.wg-social a {
  display: inline-block;
}


.wg-social-icon {
  width: 32px;  /* tamaño del ícono */
  height: 32px;
  display: block;
  transition: transform 0.2s;
}
.wg-social-icon:hover {
  transform: scale(1.1); /* pequeño efecto hover */
}


/* En pantallas grandes (ej. PC) aumentar tamaño */
@media (min-width: 1024px) {
  .wg-social-icon {
    width: 42px;   /* más grande */
    height: 42px;
  }
}


.wg-country-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--wg-contrast);
}

.wg-country-icon {
  width: 24px;
  height: 24px;
  color: var(--wg-contrast);
}

.wg-country-dropdown {
  position: relative;
}

.wg-country-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 6px;
  padding: 4px 8px;
  color: var(--wg-contrast);
  cursor: pointer;
  font-size: 14px;
}

.wg-country-flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
}

.wg-country-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--wg-bg);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  margin-top: 4px;
  list-style: none;
  padding: 0;
  width: 100%;
  z-index: 10;
}

.wg-country-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  cursor: pointer;
}

.wg-country-list li:hover {
  background: rgba(255,255,255,0.1);
}




.wg-copyright{
  width: 100%;
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

/* Franja negra inferior — AQUÍ va la animación (solo en esta franja) */
.wg-footer__strip{
  height: var(--wg-strip-h);
  background: #0b0b0b; /* más oscuro para la franja */
  position: relative;
  overflow: hidden;
}

/* Skyline (se mueve hacia la izquierda) */
.wg-skyline{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px; /* levanta un poco el skyline */
  transform-origin: left center;
  pointer-events: none;
  width: 200%;  /* el svg contiene dos grupos (duplicados) para bucle */
}

.wg-skyline-svg{
  display:block;
  width: 200%;
  height: calc(var(--wg-strip-h) * 0.55);
  fill: rgba(255,255,255,0.08); /* color del skyline (sutil) */
}

/* animación del skyline */
@keyframes wg-skyline-move {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.wg-skyline-svg { 
  animation: wg-skyline-move 26s linear infinite;
  will-change: transform;
}

/* Carro (en primer plano) */
.wg-car-wrap{
  position: absolute;
  bottom: 6px;
  left: -20%;
  width: 200px;
  height: auto;
  pointer-events: none;
  transform-origin: left bottom;
}

.wg-car{
  width: 14vw;
  max-width: 160px;
  min-width: 80px;
  height: auto;
  display:block;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.6));
  transform: translateX(0);
}

/* animación del carro: cruza de izq a der */
@keyframes wg-car-drive {
  0%   { transform: translateX(0) translateY(0) rotate(0deg); }
  10%  { transform: translateX(8vw) translateY(-2px) rotate(-1deg); }
  50%  { transform: translateX(70vw) translateY(0) rotate(0deg); }
  90%  { transform: translateX(120vw) translateY(-2px) rotate(1deg); }
  100% { transform: translateX(140vw) translateY(0) rotate(0deg); }
}

.wg-car { animation: wg-car-drive 10s linear infinite; will-change: transform; }

/* Reduce motion support */
@media (prefers-reduced-motion: reduce) {
  .wg-skyline-svg, .wg-car { animation: none !important; }
}

/* Responsive: apilar y reducir columnas en móvil */
@media (max-width: 1024px){
  .wg-footer__cols { grid-template-columns: repeat(2,1fr); }
  :root { --wg-strip-h: 80px; }
  .wg-car { animation-duration: 9s; }
  .wg-skyline-svg { animation-duration: 20s; }
}

@media (max-width: 600px){
  .wg-footer__container { padding: 28px 16px 12px; }
  .wg-footer__cols { grid-template-columns: 1fr; gap:18px; }
  .wg-logo-img { width: 120px; }
  :root { --wg-strip-h: 72px; }
  .wg-car { animation-duration: 8.5s; width: 30vw; max-width: 140px; }
  .wg-skyline-svg { animation-duration: 16s; }
}

/* pequeños ajustes visuales */
.wg-col h4, .wg-col a { letter-spacing: 0; }



.wg-moto-wrap{
  position: absolute;
  bottom: 6px;
  left: -20%;
  width: 140px;
  height: auto;
  pointer-events: none;
  transform-origin: left bottom;
}

.wg-moto{
  width: 12vw;
  max-width: 140px;
  min-width: 60px;
  height: auto;
  display:block;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.6));
  transform: translateX(0);
}

@keyframes wg-moto-drive {
  0%   { transform: translateX(0) translateY(0) rotate(0deg); }
  10%  { transform: translateX(6vw) translateY(-1px) rotate(-1deg); }
  50%  { transform: translateX(60vw) translateY(0) rotate(0deg); }
  90%  { transform: translateX(120vw) translateY(-1px) rotate(1deg); }
  100% { transform: translateX(140vw) translateY(0) rotate(0deg); }
}

.wg-moto { 
  animation: wg-moto-drive 8s linear infinite; 
  will-change: transform; 
}

@media (max-width: 1024px){
  .wg-moto { animation-duration: 7s; }
}
@media (max-width: 600px){
  .wg-moto { animation-duration: 6.5s; width: 25vw; max-width: 100px; }
}




.wg-motorcycle-wrap{
  position: absolute;
  bottom: 6px;
  left: -25%;
  width: 140px;
  height: auto;
  pointer-events: none;
  transform-origin: left bottom;
}

.wg-motorcycle{
  width: 12vw;
  max-width: 140px;
  min-width: 60px;
  height: auto;
  display:block;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.6));
  transform: translateX(0);
}

/* Animación de moto más lenta */
@keyframes wg-motorcycle-drive {
  0%   { transform: translateX(0) translateY(0) rotate(0deg); }
  10%  { transform: translateX(4vw) translateY(-1px) rotate(-1deg); }
  50%  { transform: translateX(50vw) translateY(0) rotate(0deg); }
  90%  { transform: translateX(110vw) translateY(-1px) rotate(1deg); }
  100% { transform: translateX(130vw) translateY(0) rotate(0deg); }
}

.wg-motorcycle { 
  animation: wg-motorcycle-drive 14s linear infinite; 
  will-change: transform; 
}

/* Responsive */
@media (max-width: 1024px){
  .wg-motorcycle { animation-duration: 12s; }
}
@media (max-width: 600px){
  .wg-motorcycle { animation-duration: 10s; width: 25vw; max-width: 100px; }
}



#scrollTopBtn {
  position: fixed;
  bottom: 30px;         /* distancia desde el fondo */
  right: 30px;          /* distancia desde el borde derecho */
  z-index: 1000;        /* que quede encima de todo */
  background-color: var(--wg-accent, #276EF1);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  display: none;        /* oculto por defecto */
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #276EF1;
  transform: scale(1.1);
}
