.testimonios-intro-nicepage {
  text-align: center;
  padding: 12px;
}
/* === Cartel flotante Instagram animado (UNIFICADO) === */
.ig-float-msg {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) scale(0.95);
  background: linear-gradient(90deg, #ffe600 80%, #fffbe6 100%);
  color: #181818;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 13px;
  box-shadow: 0 2px 12px 0 #ffe60044, 0 1px 8px 0 #25d36622;
  padding: 0.65em 1.3em;
  opacity: 0;
  pointer-events: none;
  z-index: 10001;
  white-space: nowrap;
  border: 2px solid #25d366;
  transition: opacity 0.45s cubic-bezier(.4,1.6,.6,1), transform 0.45s cubic-bezier(.4,1.6,.6,1);
}
.ig-float-msg.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}
.ig-float-msg.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(30px) scale(0.95);
  transition: opacity 0.35s, transform 0.45s cubic-bezier(.4,1.6,.6,1);
}
@media (max-width: 600px) {
  .ig-float-msg {
    font-size: 0.98rem;
    padding: 0.5em 0.8em;
    right: calc(100% + 7px);
  }
}
/* === Botón Scroll Up flotante pequeño === */
.scrollup-btn {
  background: #1db954;
  border: 2.5px solid #ffe600;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px 0 rgba(29,185,84,0.13);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.92);
  transition: opacity 0.22s, transform 0.22s;
  z-index: 10000;
  margin-top: 7px;
}
.scrollup-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.scrollup-btn:hover {
  box-shadow: 0 4px 18px 0 #25d36655, 0 2px 12px 0 #ffe60055;
  background: #25d366;
  border-color: #ffe600;
  transform: scale(1.08);
}
.scrollup-btn svg {
  display: block;
}
@media (max-width: 600px) {
  .scrollup-btn {
    width: 30px;
    height: 30px;
    margin-top: 5px;
  }
  .scrollup-btn svg {
    width: 22px;
    height: 22px;
  }
}
/* === Contenedor de botones flotantes (IG + Scroll Up) === */
/* Más espacio entre IG y scroll up para evitar superposición del cartel IG */
/* === Contenedor de botones flotantes (IG + Scroll Up) UNIFICADO === */
.float-btns-container {
  position: fixed;
  right: 10px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
  z-index: 9999;
}
@media (max-width: 600px) {
  .float-btns-container {
    right: 10px;
    bottom: 16px;
    gap: 12px;
  }
}
/* === Botón flotante Instagram llamativo === */
/* === Botón flotante Instagram UNIFICADO === */
.ig-float-btn {
  position: relative;
  z-index: auto;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.5em;
  pointer-events: none;
}
.ig-float-btn a {
  background: linear-gradient(135deg, #ffe600 0%, #25d366 100%);
  border-radius: 50%;
  box-shadow: 0 4px 18px 0 rgba(37,213,102,0.18), 0 2px 12px 0 rgba(0,0,0,0.13);
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 3px solid #fff;
  animation: ig-float-pop 1.1s cubic-bezier(.68,-0.55,.27,1.55);
}
.ig-float-btn a:hover {
  box-shadow: 0 6px 24px 0 #25d36655, 0 2px 12px 0 #ffe60055;
  transform: scale(1.08) rotate(-6deg);
}
.ig-float-icon {
  width: 38px;
  height: 38px;
  display: block;
  filter: drop-shadow(0 0 2px #fffbe6);
}

@media (max-width: 600px) {
  .ig-float-btn {
    position: static;
    gap: 0.5em;
  }
  .ig-float-msg {
    position: absolute;
    right: 100%;
    bottom: 0;
    left: auto !important;
    margin-right: 12px;
    transform: none !important;
    max-width: 68vw;
    min-width: 0;
    font-size: 0.98rem;
    padding: 0.55em 1em;
    border-radius: 13px;
    text-align: left;
    background: rgba(255,255,255,0.92);
    color: #333;
    font-weight: 400;
    box-shadow: 0 2px 8px 0 #0002;
    border: 1.5px solid #ffe60044;
    word-break: break-word;
    z-index: 10000;
  }
}
.ig-float-btn {
  position: fixed;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  /* Para el mensaje flotante */
  pointer-events: none;
}
.ig-float-btn a {
  pointer-events: auto;
}
.ig-float-user {
  color: #25d366;
  font-weight: bold;
}
@keyframes ig-float-fadein {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ig-float-pop {
  0% { transform: scale(0.7); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
@media (max-width: 600px) {
  .ig-float-btn a {
    width: 46px;
    height: 46px;
  }
  .ig-float-icon {
    width: 26px;
    height: 26px;
  }
  .ig-float-msg {
    font-size: 0.98rem;
    padding: 0.5em 0.8em;
  }
}
/* === Botón flotante Instagram === */
.ig-float-btn {
  position: static;
  z-index: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
}
.ig-float-btn a {
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
  border-radius: 50%;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.13);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s;
  border: 2px solid #ffe600;
}
.ig-float-btn a:hover {
  box-shadow: 0 4px 18px 0 rgba(37,213,102,0.18);
  border-color: #25d366;
}
.ig-float-icon {
  width: 38px;
  height: 38px;
  display: block;
}
/* Mensaje flotante IG: superpuesto, no desplaza el botón */
.ig-float-msg {
  position: absolute;
  right: 0;
  bottom: 70px;
  left: auto;
  margin: 0;
  background: #fffbe6;
  color: #222;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
  padding: 0.7em 1.2em;
  font-size: 1.05rem;
  font-weight: 500;
  white-space: nowrap;
  animation: ig-float-fadein 0.5s;
  z-index: 10000;
}
@keyframes ig-float-fadein {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
  .ig-float-btn {
    bottom: 80px;
  }
  .ig-float-btn a {
    width: 44px;
    height: 44px;
  }
  .ig-float-icon {
    width: 26px;
    height: 26px;
  }
  .ig-float-msg {
    font-size: 0.98rem;
    padding: 0.5em 0.8em;
  }
}
/* === Banner Instagram fijo sobre scroll up === */
.ig-banner {
  position: fixed;
  right: 1.2em;
  bottom: 4.5em;
  z-index: 1200;
  background: #fff;
  border-radius: 2em;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.13);
  padding: 0.45em 1.2em 0.45em 0.7em;
  display: flex;
  align-items: center;
  gap: 0.7em;
  min-width: 0;
  max-width: 95vw;
  transition: box-shadow 0.2s, background 0.2s;
}
.ig-banner-link {
  display: flex;
  align-items: center;
  gap: 0.7em;
  text-decoration: none;
}
.ig-banner-icon {
  width: 2em;
  height: 2em;
  min-width: 2em;
  min-height: 2em;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px #0001;
}
.ig-banner-text {
  color: #181818;
  font-size: 1.08em;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ig-banner-user {
  color: #e1306c;
  font-weight: 700;
}
@media (max-width: 600px) {
  .ig-float-msg {
    position: absolute;
    right: 100%;
    bottom: 0;
    left: auto !important;
    margin-right: 12px;
    transform: none !important;
    max-width: 68vw;
    min-width: 0;
    font-size: 0.98rem;
    padding: 0.55em 1em;
    border-radius: 13px;
    text-align: left;
    background: rgba(255,255,255,0.92);
    color: #333;
    font-weight: 400;
    box-shadow: 0 2px 8px 0 #0002;
    border: 1.5px solid #ffe60044;
    word-break: break-word;
    z-index: 10000;
  }
}

.testimonios-grid-nicepage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

@media (min-width: 700px) {
  .testimonios-grid-nicepage {
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem 2.5rem;
  }
}
.testimonio-card-nicepage {
  background: #fff;
  border-radius: 2.2rem;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
  padding: 2.2rem 2rem 1.7rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 220px;
  position: relative;
  transition: box-shadow 0.2s;
}
.testimonio-card-nicepage:hover {
  box-shadow: 0 4px 32px 0 rgba(0,0,0,0.13);
}
.testimonios-stars-nicepage {
  margin-bottom: 1.1rem;
}
.star-naranja {
  color: var(--verde);
  font-size: 1.35em;
  margin-right: 0.08em;
  text-shadow: 0 1px 2px #fff2, 0 0 2px var(--verde);
}
.testimonio-card-nicepage blockquote {
  color: #222;
  font-size: 1.08rem;
  line-height: 1.6;
  margin: 0 0 1.3rem 0;
  font-style: italic;
  padding: 0;
  border: none;
  background: none;
}
.testimonio-nombre-nicepage {
  color: var(--verde);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.05em;
  margin-top: auto;
  margin-bottom: 0.1em;
}
@media (max-width: 700px) {
  .testimonios-title-nicepage {
    font-size: 2rem;
  }
  .testimonios-grid-nicepage {
    grid-template-columns: 1fr;
    gap: 1.3rem;
    padding: 0 0.5rem;
  }
  .testimonio-card-nicepage {
    padding: 1.5rem 1.1rem 1.1rem 1.1rem;
    min-height: 170px;
  }
}
/* === Testimonios Vibrante Mobile First === */
.testimonios-section {
  background: linear-gradient(135deg, #fffbe6 0%, #fffde7 100%);
  padding: 2em 0 1.2em 0;
  margin: 0 auto 1.5em auto;
  max-width: 100vw;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(255,230,0,0.07);
}
.testimonios-header {
  text-align: center;
  margin-bottom: 1.2em;
}
.testimonios-stars {
  font-size: 1.5em;
  margin-bottom: 0.2em;
  letter-spacing: 0.08em;
}
.star-green {
  color: #1db954;
  text-shadow: 0 1px 6px #b6f5c7, 0 0px 2px #fff;
  font-size: 1.1em;
  display: inline-block;
}
.testimonios-title {
  color: #181818;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  letter-spacing: 0.01em;
}
.testimonios-intro {
  color: #444;
  font-size: 1.01em;
  margin: 0 auto 0.5em auto;
  max-width: 420px;
}
.testimonios-grid {
  display: flex;
  flex-direction: column;
  gap: 0.9em;
  max-width: 420px;
  margin: 0 auto;
}
.testimonio-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(29,185,84,0.07);
  padding: 0.95em 1em 0.7em 1em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 3px solid #ffe600;
  border-bottom: 2px solid #ffe60022;
}
.testimonio-avatar {
  font-size: 1.4em;
  margin-bottom: 0.15em;
  background: #fffbe6;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #ffe60055;
}
.testimonio-card blockquote {
  color: #222;
  font-size: 1em;
  font-style: normal;
  margin: 0 0 0.5em 0;
  line-height: 1.5;
  padding-left: 0.1em;
}
.testimonio-nombre {
  color: #1db954;
  font-weight: 600;
  font-size: 1em;
  margin-bottom: 0.05em;
  letter-spacing: 0.01em;
}
@media (min-width: 600px) {
  .testimonios-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1em;
    max-width: 800px;
  }
  .testimonio-card {
    flex: 1 1 45%;
    min-width: 220px;
    max-width: 340px;
  }
  .testimonios-title {
    font-size: 1.5rem;
  }
  .testimonios-intro {
    font-size: 1.08em;
  }
}
@media (min-width: 1000px) {
  .testimonios-section {
    max-width: 1100px;
    margin: 0 auto 2em auto;
    padding: 2em 0 1.5em 0;
  }
  .testimonios-title {
    font-size: 1.7rem;
  }
  .testimonios-intro {
    font-size: 1.13em;
  }
}

/* === Testimonios Minimalista Mobile First === */
.testimonios-section {
  background: none;
  padding: 1.5em 0 1em 0;
  margin: 0 auto 1.2em auto;
  max-width: 100vw;
}
.testimonios-title {
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1em;
  letter-spacing: 0.01em;
}
.testimonios-grid {
  display: flex;
  flex-direction: column;
  gap: 0.7em;
  max-width: 420px;
  margin: 0 auto;
}
.testimonio-card {
  background: #202420;
  border-radius: 10px;
  box-shadow: none;
  padding: 0.9em 0.9em 0.7em 0.9em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 3px solid #ffe600;
}
.testimonio-avatar {
  font-size: 1.5em;
  margin-bottom: 0.2em;
  background: none;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonio-card blockquote {
  color: #fff;
  font-size: 0.98em;
  font-style: normal;
  margin: 0 0 0.5em 0;
  line-height: 1.45;
  padding-left: 0.1em;
}
.testimonio-nombre {
  color: #ffe600;
  font-weight: 500;
  font-size: 0.98em;
  margin-bottom: 0.05em;
  letter-spacing: 0.01em;
}
@media (min-width: 600px) {
  .testimonios-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1em;
    max-width: 800px;
  }
  .testimonio-card {
    flex: 1 1 45%;
    min-width: 220px;
    max-width: 340px;
  }
  .testimonios-title {
    font-size: 1.3rem;
  }
}
@media (min-width: 1000px) {
  .testimonios-section {
    max-width: 1100px;
    margin: 0 auto 2em auto;
    padding: 2em 0 1.5em 0;
  }
  .testimonios-title {
    font-size: 1.5rem;
  }
}
body {margin:0;font-family:system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Arial,sans-serif;background:#181818;color:#fff;}
.header-compact{background:#181818;box-shadow:0 2px 8px rgba(0,0,0,0.08);padding:0.7em 0.5em;}
.logo-large{height:54px;width:auto;}
.main-nav .nav-list{display:flex;gap:1.2em;list-style:none;margin:0;padding:0;}
.main-nav .nav-list li a{color:#ffe600;text-decoration:none;font-weight:600;}
.main-nav .nav-list li a:hover{text-decoration:underline;}
.material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
  font-size: 2.2rem;
  color: #ffe600;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #1db954;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  text-align: center;
}
.beneficio-icono {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.kiosco-estacion {
  display: flex;
  align-items: center;
  gap: 0.18em;
}
.kiosco-estacion .material-symbols-rounded {
  margin-right: 0.12em;
  margin-bottom: 0;
}
.kiosco-mapa iframe {
  margin-bottom: 0.7em;
  display: block;
}
@media (max-width: 900px) {
  .main-nav .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: #1db954;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: 0 0 18px 18px;
    z-index: 100;
    padding: 1.2em 0 1.2em 0;
  }
  .main-nav .nav-list.show {
    display: flex;
  }
  .main-nav .nav-list li {
    text-align: center;
    margin: 0.2em 0;
  }
  .main-nav .nav-list li a {
    color: #fff;
    font-size: 1.18em;
    padding: 0.7em 0;
    display: block;
  }
  .burger {
    display: block;
  }
}
@media (min-width: 901px) {
  .main-nav .nav-list {
    display: flex !important;
    position: static;
    background: none;
    flex-direction: row;
    gap: 1.2em;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }
  .burger {
    display: none;
  }
}
.kioscos-seo-desc {
  text-align: center;
  max-width: 540px;
  font-size: 1.1rem;
  margin: 0 auto 1.2em auto;
  color: #444;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.2rem 1.2rem 1.2rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-logo {
  width: 90px;
  margin-bottom: 0.7em;
}
.footer-desc {
  color: #eee;
  font-size: 1.05em;
  margin-bottom: 0;
}
.footer-menu ul, .footer-contacto ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu li, .footer-contacto li {
  margin-bottom: 0.5em;
}
.footer-menu a, .footer-contacto a {
  color: #ffe600;
  text-decoration: none;
}
.footer-menu a:hover, .footer-contacto a:hover {
  text-decoration: underline;
}
.footer-menu h4, .footer-contacto h4, .footer-ubicaciones h4 {
  color: #ffe600;
  margin-bottom: 0.7em;
  font-size: 1.13em;
}
.footer-ubicaciones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1em 2em;
  width: 100%;
  justify-items: center;
}
.footer-ubi-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7em;
  margin-bottom: 0.7em;
  text-align: left;
}
.footer-ubi-icon {
  color: #ffe600;
  font-size: 1.3em;
  margin-top: 0.2em;
}
.footer-ubi-info b {
  color: #ffe600;
  font-size: 1.05em;
}
.footer-ubi-direccion {
  display: block;
  color: #fff;
  font-size: 0.98em;
  margin-bottom: 0.1em;
}
.footer-maps-link {
  color: #1db954;
  font-size: 0.98em;
  text-decoration: underline;
}
.footer-maps-link:hover {
  color: #ffe600;
}
.footer-legal {
  text-align: center;
  padding: 1.2em 0 0.5em 0;
  color: #aaa;
  font-size: 0.98em;
  border-top: 1px solid #222;
  margin-top: 1.5em;
}
.footer-legal a {
  color: #1db954;
  text-decoration: underline;
  font-size: 0.98em;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2.2rem 0;
    padding: 2.2rem 0.5rem 1.2rem 0.5rem;
    width: 100%;
    align-items: center;
  }
  .footer-col {
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
  }
  .footer-ubicaciones-grid {
    display: flex;
    flex-direction: column;
    gap: 1.1em;
    width: 100%;
    align-items: center;
  }
  .footer-ubi-item {
    width: 100%;
    max-width: 340px;
    margin: 0 auto 0.7em auto;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 0.3em;
  }
  .footer-ubi-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .footer-maps-link {
    display: inline-block;
    margin: 0.2em auto 0 auto;
    text-align: center;
  }
  .footer-ubi-icon {
    margin-bottom: 0.2em;
  }
}
