:root {
  --primary-color: #ff4057;
  --secondary-color: #889cff;
  --dark-bg: #051c2c;
  --text-light: #ffffff;
  --text-black: #000000;
  --menu-bg: #fcfaf0;
  --reservas-bg: #ff85a0;
  --pedidos-bg: #d1ffff;
  --encuestas-bg: #a9bcf9;
  --marketing-bg: #f6edb1;
  --footer-bg: #1c9e97;
}
.navbar-scrolled {
  background-color: #051c2c00;
  transition: background-color 0.3s ease-in-out;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: background-color 0.3s ease;
}
body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  overflow-x: hidden;
}

/* Estilo para la superposición de carga */
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-bg); /* Mismo color que el fondo del body */
  z-index: 9999; /* Asegura que esté encima de todo */
  display: flex; /* Para centrar contenido si se añade (ej. spinner) */
  justify-content: center;
  align-items: center;
}

/* Nuevo: Estilo para el fondo de la animación del logo */
#logo-reveal-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(
    --dark-bg
  ); /* Mismo color que el fondo del body y loading-overlay */
  z-index: 9998; /* Detrás del logo animado (10000), debajo de loading-overlay (9999) */
  opacity: 0; /* Inicialmente invisible */
  pointer-events: none; /* No debe interferir con clics */
}

.logo {
  max-width: 200px;
  z-index: 10000;
}

/* Logo específico del footer */
#Capa_2 {
  max-width: 400px !important;
  width: 400px !important;
  height: auto !important;
}

/* Layout responsive para botón y texto de descuento */
@media (max-width: 768px) {
  .d-inline-flex.flex-nowrap.align-items-center.gap-2 {
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100%;
  }
}

.navbar {
  padding: 1.5rem 0;
}

/* Estilos para botón hamburguesa - oculto por defecto */
.hamburger-menu {
  display: none;
}

.iniciar-btn {
  background-color: var(--primary-color);
  border-radius: 25px;
  padding: 8px 25px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-light);
}
.iniciar-btn:hover {
  background-color: var(--secondary-color) !important;
  border-radius: 25px;
  padding: 8px 25px;
  font-weight: 600;
  color: var(--text-light);
}
.btn-outline-light {
  border-radius: 25px;
  padding: 8px 25px;
  font-weight: 600;
}

.hero-section {
  padding: 8rem 0 3rem;
  position: relative;
  overflow: hidden;
  height: 80vh;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text h1 {
  font-size: 4.7rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1;
  letter-spacing: -2px;
}
.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-weight: 400;
  font-weight: 400;
}

.hero-image-container {
  position: relative;
  perspective: 1000px; /* Add perspective for 3D effect */
  /* Ensure the container takes up space */
  min-height: 600px; /* Adjust as needed, example value */
}

/* Style the hero swiper */
.hero-swiper {
  width: 100%;
  height: 100%; /* Make swiper fill the container */
  position: absolute; /* Position within the container if needed */
  top: 0;
  left: 0;
}

.hero-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; /* Ensure slide takes full height */
}

.hero-image {
  position: relative;
  max-width: 100%;
  height: auto; /* Maintain aspect ratio */
  /* Start at normal scale */
  /* transform: scale(1); */ /* Swiper/Parallax handles transforms now */
  margin-top: -20px; /* Keep the original margin */
  /* transition: transform 0.3s ease-out; */ /* Conflicts might arise, handled by swiper/parallax */
  transform-style: preserve-3d; /* Ensure 3D transforms apply correctly */
  /* Añadir sombra para los videos */
}

/* Adjust Swiper pagination style if needed */
.hero-swiper .swiper-pagination-bullet {
  background-color: var(--text-light);
  opacity: 0.7;
}

.hero-swiper .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  opacity: 1;
}

.clients-section {
  padding: 2rem 0 4rem;
  text-align: center;
}

.clients-section h2 {
  margin-bottom: 3rem;
  font-weight: 600;
  font-size: 2rem;
  background-image: linear-gradient(
    90deg,
    var(--text-light),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  letter-spacing: -1px;
}

.services-section .services-title {
  font-weight: 600;
  font-size: 3rem;
  color: var(--text-light);
  display: inline-block;
  letter-spacing: -3px;
}

.review-title {
  font-weight: 600;
  font-size: 3rem;
  color: var(--dark-bg);
  display: inline-block;
  letter-spacing: -3px;
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}

.services_highlight {
  background-image: linear-gradient(
    90deg,
    var(--text-light),
    var(--primary-color)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-weight: 900;
  padding-right: 3px;
}

.review_highlight {
  background-image: linear-gradient(90deg, var(--dark-bg), var(--encuestas-bg));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-weight: 900;
  padding-right: 3px;
}

.services-section p {
  font-size: 1.3rem;

  font-weight: 400;
  font-weight: 400;
}

.swiper {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.mySwiper .swiper-slide {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.client-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.btn-demo {
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 10px 25px;
  font-weight: 600;
  text-decoration: none;
  margin-right: 10px;
  display: inline-block;
}
.btn-demo:hover {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 10px 25px;
}

.btn-demo2 {
  background-color: #ff405700;
  color: #000000;
  border: none;
  border-radius: 25px;
  padding: 10px 25px;
  font-weight: 600;
  text-decoration: none;
  margin-right: 10px;
  display: inline-block;
  border: solid 2px;
}
.btn-demo2:hover {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 10px 25px;
}

.input-link {
  color: var(--text-black);
  text-decoration: none;
  border: 1px solid white;
  border-radius: 10px;
  padding: 10px 25px;
  font-weight: 400;
  background-color: #fff;
  margin-right: 10px;
}

.highlight {
  font-weight: 800;
}

.boton-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: visible;
}

.menu-btn {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 8px 25px;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.menu-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

.menu-btn-icon {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 50%;
  padding: 8px 10px;
  font-weight: 500;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-100%);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1;
  opacity: 0;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.boton-menu:hover .menu-btn-icon {
  transform: translateY(-50%) translateX(45px) rotate(720deg);
  opacity: 1;
  margin-left: 2px;
}

.boton-menu:hover .menu-btn-icon {
  background-color: var(--primary-color);
}

.language-flag {
  font-size: 1.5rem;
  vertical-align: middle;
}
.holae {
  display: none !important;
}
@media (max-width: 768px) {
  .qwdwqd3 {
    margin-bottom: 20px;
  }
  .asdasd333 {
    display: flex;
    text-align: center !important   ;
    justify-content: center;
  }
  .cecwc {
    font-size: 12px !important;
    margin: 0 10px;
  }
  .adasdasd {
    display: none;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-image {
    margin-top: 0rem;
  }
  .adios {
    display: none !important;
  }

  .holae {
    display: block !important;
  }

  .logos-aliados-co img {
    padding: 5px;
  }

  .acodres {
    width: 80%;
  }
  .google {
    max-width: 70%;
  }
  .camara {
    max-width: 84%;
  }
  .aws {
    max-width: 78%;
  }
  .atlantic {
    max-width: 86%;
  }
  .coltelco {
    max-width: 76%;
  }
  .innpulsa {
    max-width: 77%;
  }
  .mercado {
    max-width: 80%;
  }
  .wompi {
    max-width: 69%;
  }
  .procolombia {
    max-width: 83%;
  }

  .empresalatam {
    max-width: 100%;
  }
}

.adios {
  display: block;
}

.card-content {
  padding-right: 40px;
  padding-left: 40px;
}

.card-title {
  font-size: 6rem;
  font-weight: 700;

  color: #000;
  line-height: 1;
  letter-spacing: -7px;
}

.card-text {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #000;
  font-weight: 500;
  max-width: 95%;
  margin-bottom: 25px !important;
  margin-top: 10px !important;
  position: relative; /* Añadido para posicionar el pseudo-elemento */
  display: inline-block; /* Para que el ::after no ocupe todo el ancho del contenedor padre */
}

.card-text::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px; /* Grosor de la línea */
  display: block;
  margin-top: 2px; /* Espacio entre el texto y la línea */
  right: 0;
  background: var(--primary-color); /* Color de la línea, puedes cambiarlo */
  transition: width 0.3s ease; /* Velocidad y tipo de animación */
  -webkit-transition: width 0.3s ease;
}

.card-text:hover::after {
  width: 100%;
  left: 0;
  background: var(--primary-color); /* Color de la línea en hover */
}

.card-features {
  list-style: none;
  padding-left: 0;
  margin-top: 40px;
}

.card-features li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
}

.bullet {
  color: #000;
  margin-right: 10px;
  font-weight: bold;
}

.card-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.card-image {
  width: 500px; /* Ancho objetivo para la imagen */
  max-width: 95%; /* No excederá el 95% del ancho de su contenedor.
                           Si 380px es mayor que este 95%, la imagen se encogerá. */
  height: auto; /* Mantiene la proporción (ya gestionado por la clase img-fluid) */
  display: block; /* img-fluid también lo hace, pero es bueno ser explícito */
}

/* Marketing Card Styles */
.menu-card {
  background-color: var(--menu-bg);
  width: 100%;
  color: #000;
  overflow: hidden;
  position: relative;
  padding: 40px 0 300px; /* Aumentado el padding-bottom a 120px */
  margin: 0;

  border-top-right-radius: 150px;
}
@media (max-width: 768px) {
  .reservas-card {
    /* Reemplaza #FB527A con el código HEX que extrajiste de tu captura de iPhone */
    background-color: #ff7996 !important; 
  }
}
/*  encuesta Card Styles */
.reservas-card {
  background-color: var(--reservas-bg);
  width: 100%;
  color: #000;
  overflow: hidden;
  position: relative;
  padding: 40px 0 300px; /* Aumentado el padding-bottom a 120px */
  margin: 0;
  margin-top: -255px; /* Added negative margin */
  border-top-right-radius: 150px;
}

/*  encuesta Card Styles */
.pedidos-card {
  background-color: var(--pedidos-bg);
  width: 100%;
  color: #000;
  overflow: hidden;
  position: relative;
  padding: 40px 0 300px; /* Aumentado el padding-bottom a 120px */
  margin: 0;
  margin-top: -255px; /* Added negative margin */
  border-top-right-radius: 150px;
}
.encuestas-card {
  background-color: var(--encuestas-bg);
  width: 100%;
  color: #000;
  overflow: hidden;
  position: relative;
  padding: 40px 0 300px; /* Aumentado el padding-bottom a 120px */
  margin: 0;
  margin-top: -255px; /* Added negative margin */
  border-top-right-radius: 150px;
}

.marketing-card {
  background-color: var(--marketing-bg);
  width: 100%;
  color: #000;
  overflow: hidden;
  position: relative;
  padding: 40px 0 40px; /* Reduced padding-bottom from 300px */
  margin: 0;
  margin-top: -255px; /* Added negative margin */
  border-top-right-radius: 150px;
}

/* Estilos para la sección de Testimonios */
.testimonials-section {
  padding: 5rem 0;
  position: relative;
  /* overflow: hidden;*/
  padding-bottom: 0px;
}

.review-section {
  padding: 5rem 40px;
  position: relative;
  /* overflow: hidden;*/
  padding-top: 40px;
  padding-bottom: 0px;
}

.review-section p {
  font-size: 1.3rem;
  font-weight: 400;
  font-weight: 400;
  color: var(--dark-bg);
}

/* Estilos para el Swiper de dispositivos */
.device-showcase {
  padding: 3rem 0;
  position: relative;
}

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

.deviceSwiper .swiper-slide {
  width: 22%;
  min-width: 300px;
  height: auto;
  transition: transform 0.3s ease;
  perspective: 1000px;
  opacity: 0.5;
}

.deviceSwiper .swiper-slide-active {
  opacity: 1;

  z-index: 10;
}

.phone-mockup {
  position: relative;
  margin: 0 auto;
  max-width: 50%;
  transform-style: preserve-3d;
  transform: rotateY(0deg) rotateX(0deg);
  transition: transform 0.6s ease;
}

.phone-mockup img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 25px;
}

/* Estilos para las flechas de navegación */
.deviceSwiper .swiper-button-next,
.deviceSwiper .swiper-button-prev {
  color: white;
  background-color: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  backdrop-filter: blur(5px);
}

.deviceSwiper .swiper-button-next:after,
.deviceSwiper .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.deviceSwiper .swiper-button-prev {
  left: 5%;
}

.deviceSwiper .swiper-button-next {
  right: 5%;
}

/* Estilos para las flechas de navegación */
.video-swiper .swiper-button-next,
.video-swiper .swiper-button-prev {
  color: white;
  background-color: rgb(255 64 87 / 0%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: background-color 0.3s ease;
}

.video-swiper .swiper-button-next:after,
.video-swiper .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.video-swiper .swiper-button-prev {
  left: 5%;
}

.video-swiper .swiper-button-next {
  right: 5%;
}

@media (max-width: 768px) {
  .deviceSwiper .swiper-slide {
    width: 70%;
    min-width: 250px;
  }

  .deviceSwiper .swiper-button-prev {
    left: 0;
  }

  .deviceSwiper .swiper-button-next {
    right: 0;
  }
}

.testimonials-title {
  font-weight: 600;
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  letter-spacing: -3px;
}

.testimonials_highlight {
  background-image: linear-gradient(
    90deg,
    var(--text-light),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-weight: 900;
  padding-right: 3px;
}

/* Estilos para el slider de tipos de establecimientos */
.restaurant-container {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.typeSwiper {
  width: 100%;
  position: relative;
  overflow: visible;
  padding: 20px 0;
}

/* Animación CSS para movimiento perpetuo como respaldo */
@keyframes continuousSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.typeSwiper {
  width: 100%;
  min-width: 100%;
  height: auto;
  transition: none; /* Sin transiciones adicionales que puedan interferir */
  will-change: transform;
}

/* Optimizaciones para animaciones suaves y perpetuas */
.typeSwiper,
.typeSwiper * {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

/* Forzar aceleración por hardware */

.type-slide {
  width: 100%; /* Set a specific width for demonstration */
}

.type-image-container {
  position: relative;
  border-radius: 20px; /* Increased border-radius for a softer look */
  overflow: hidden;
  height: 200px;
  width: 100%;
  cursor: pointer;
}

/* Dark overlay on the image */
.type-image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0); /* Slightly adjusted opacity */
  z-index: 1;
  transition: background-color 0.5s ease;
}
.type-image-container:hover::before {
  background-color: rgba(0, 0, 0, 0.6); /* Darken on hover */
}
.type-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.type-overlay {
  position: absolute;
  bottom: 20px;
  left: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  z-index: 2;
}
.type-info {
  display: flex;
  align-items: center;
  gap: 12px; /* Space between icon and text */
  background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent background */
  padding: 12px 20px; /* Adjust padding */
  border-radius: 50px; /* Pill shape */
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px); /* Frosted glass effect */
  -webkit-backdrop-filter: blur(5px);
  transition: background-color 0.3s ease;
}

.type-image-container:hover .type-info {
  background-color: rgba(0, 0, 0, 0.5);
}
.type-info i {
  font-size: 1.2rem;
}

.type-info h3 {
  font-size: 1.1rem; /* Adjusted font size */
  font-weight: 500; /* Medium weight */
  margin: 0;
  line-height: 1.2;
}

/* Container for the arrow icon, styled as a circle */
.arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; /* Slightly larger for balance */
  height: 48px;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: background-color 0.3s ease;
}

.type-image-container:hover .arrow-icon {
  background-color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .type-slide {
    width: 100%; /* Adjust for smaller screens */
  }

  .type-info h3 {
    font-size: 1rem;
  }
}
.type-overlay h3 {
  font-size: 1rem;

  margin: 0;
  line-height: 1.2;
}

.type-image-container:hover .type-image {
  transform: scale(1.1);
}

.typeSwiper .swiper-button-next,
.typeSwiper .swiper-button-prev {
  color: white;
  background-color: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  backdrop-filter: blur(5px);
}

.typeSwiper .swiper-button-next:after,
.typeSwiper .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .typeSwiper .swiper-slide {
    width: 70%;
    min-width: 200px;
    height: 100px;
  }
  .type-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 120px;
    width: 100%;
    cursor: pointer;
  }
}

.testimonial-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2.5rem;
  margin: 1rem 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
  margin-bottom: 1.5rem;
}

.testimonial-text p {
  color: var(--text-light);
  line-height: 1.7;
}

.testimonial-author h5 {
  color: var(--text-light);
}

.testimonial-image-container {
  padding: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .celular_asd {
    position: absolute;
    overflow: hidden;
  }
  .testimonial-item {
    padding: 1.5rem;
  }

  .testimonial-image-container {
    margin-bottom: 1.5rem;
  }

  .logos-aliados-co {
    /* background: #fff; */
    /* margin: 2rem; */
    /* border-radius: 50px; */
    filter: brightness(0) invert(1);
    width: 100% !important;
  }
}
.mySwiper > .swiper-wrapper {
  transition-timing-function: linear;
}
.typeSwiper > .swiper-wrapper {
  transition-timing-function: linear;
}
.texto-cards2 {
  padding-bottom: 1rem !important;
}

.footer-section {
  padding: 2rem 40px;
  position: relative;
  text-align: center;
  padding-bottom: 29px;
}

.footer-title {
  font-weight: 600;
  font-size: 3rem;
  color: var(--text-light);
  display: inline-block;
  margin-bottom: 3rem;
  letter-spacing: -3px;
  padding-top: 35px;
}

.footer-title-card {
  font-weight: 800;
  font-size: 2rem;
  color: var(--text-light);
  display: inline-block;
}
.footer-text-card {
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--text-light);
  display: inline-block;
}

.footer_highlight {
  background-image: linear-gradient(90deg, var(--text-light), var(--footer-bg));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-weight: 900;
  padding-right: 3px;
}

.footer-card {
  background-color: var(--footer-bg);
  color: var(--text-light);
  overflow: hidden;
  position: relative;
  padding: 40px 40px;
  border-radius: 10px;
  text-align: left;
  height: 25.5rem;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: space-between;
  overflow: hidden;
  padding: 1.5rem;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.card-img-top {
  border-radius: 10px;
}

/* Add relative positioning for pseudo-elements */
.mySwiper {
  position: relative;
  /* Optional: Add some horizontal padding if logos get too close to the edge */
  /* padding: 0 50px; */
  background-color: var(--menu-bg);
  border-radius: 100px;
}

/* Fading effect for .mySwiper */
.mySwiper::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px; /* Adjust width of the fade effect */
  z-index: 2; /* Make sure it's above the slides */
  pointer-events: none; /* Allow clicks to pass through */
}

.mySwiper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px; /* Adjust width of the fade effect */
  z-index: 2; /* Make sure it's above the slides */
  pointer-events: none; /* Allow clicks to pass through */
}

.mySwiper::before {
  left: 0;
  background: linear-gradient(to right, var(--menu-bg), transparent);
}

.mySwiper::after {
  right: 0;
  background: var(--menu-bg);
}

.clients-section {
}

/* Estilos para el contador de marcas dentro del swiper */
.brands-counter {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 16px;
}

.counter-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-black);
  line-height: 1;
  letter-spacing: -1px;
}

.counter-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-black);
  text-transform: lowercase;
  margin-top: 0px;
}

/* Ocultar completamente en móviles */
@media (max-width: 768px) {
  .review_highlight {
    background-image: linear-gradient(
      90deg,
      var(--dark-bg),
      var(--encuestas-bg)
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    font-weight: 900;
  }
  .brands-counter {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px 16px;
  }

  .counter-number {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text-black);
    line-height: 1;
    letter-spacing: -1px;
  }

  .counter-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-black);
    text-transform: lowercase;
    margin-top: 0px;
  }
  .mySwiper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
  }
}

/* --- Video Overlay Styles --- */
.video-wrapper {
  position: relative;
  cursor: pointer;
  border-radius: 10px; /* Apply radius to wrapper */
  overflow: hidden; /* Clip corners */
  display: block; /* Ensure it takes block layout */
  line-height: 0; /* Prevent extra space below video */
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; /* Cover the entire wrapper */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent background */
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 1; /* Ensure overlay is above video */
}

.video-wrapper.playing .video-overlay {
  opacity: 0;
  pointer-events: none; /* Allow clicks to pass through to video controls */
}

.play-button {
  width: 100px; /* Adjust size as needed */
  height: 100px;
  transition: transform 0.2s ease;
}

.video-overlay:hover .play-button {
  transform: scale(1.2); /* Efecto hover más pronunciado para el botón */
}

video.card-img-top {
  display: block; /* Remove extra space below video */
  width: 100%;
  height: auto;
  transition: transform 0.3s ease; /* Añadido para el efecto de zoom */
  /* border-radius: 10px; /* Radius now on wrapper */
}

/* Efecto de zoom en hover para el poster del video */
.video-wrapper {
  overflow: hidden; /* Evita que el zoom se desborde del contenedor */
  border-radius: 10px; /* Mantiene los bordes redondeados */
}

.video-wrapper:hover video.card-img-top {
  transform: scale(1.05); /* Zoom pequeño del 5% */
}
/* --- End Video Overlay Styles --- */

/* Style for input when showing placeholder suffix */
.input-link.has-placeholder-suffix {
  color: #888; /* Greyish color for placeholder text */
}

.boton-cuadro {
  font-weight: 800 !important;
  font-size: 3rem;
  color: var(--text-light);
  display: inline-block;
  text-decoration: none;
  letter-spacing: -3px;
}
.boton-cuadro:hover {
  font-weight: 800 !important;

  color: var(--text-light);
  display: inline-block;
  text-decoration: none;
}

/* Estilos para el efecto hover del botón con icono y línea */
.boton-cuadro {
  position: relative; /* Para posicionamiento absoluto de pseudo-elementos */
  /* Mantener estilos existentes como font-weight, font-size, color, display, text-decoration */
  border-radius: 0; /* La imagen de referencia no muestra bordes redondeados */
  /* padding: 0.5em 0; /* Ajustar padding vertical si es necesario */
}

.boton-cuadro .text-content {
  display: inline-block;
  position: relative; /* Para el pseudo-elemento ::after (línea) */
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform; /* Optimización para el navegador */
}

.footer-card:hover .boton-cuadro .text-content {
  /* Mueve el texto a la derecha para el icono y el efecto de "un poco a la derecha" */
  /* Ancho del icono (~2rem) + espacio (~0.2rem) + desplazamiento (~0.3rem) = 2.5rem */
  transform: translateX(2.5rem);
}

/* Icono usando ::before en la etiqueta <a> */
.boton-cuadro::before {
  content: ""; /* El contenido ahora es el fondo */
  display: inline-block; /* Necesario para aplicar dimensiones al ::before */
  width: 2rem; /* Ancho del icono, ajusta según sea necesario */
  height: 2rem; /* Alto del icono, ajusta según sea necesario */
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' fill='%23ffffff' viewBox='0 0 40 40'%3E%3Cpath d='m32.063 24-9 9-2.123-2.122 5.377-5.378H8.063V6h3v16.5h15.254l-5.377-5.378L23.062 15z'/%3E%3C/svg%3E");
  background-size: contain; /* Asegura que el SVG se escale dentro del contenedor */
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0; /* Se alinea con el borde izquierdo de <a> */
  top: 50%;
  color: var(
    --text-light
  ) !important; /* Para que currentColor en el SVG funcione */
  opacity: 0;
  /* Comienza a la izquierda de su posición final y ligeramente reducido */
  transform: translateY(-50%) translateX(-50%) scale(0.8);
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
    opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform, opacity;
}

.footer-card:hover .boton-cuadro::before {
  opacity: 1;
  /* Se mueve a su posición final (0.5rem desde el borde izquierdo) y tamaño normal */
  transform: translateY(-50%) translateX(0.5rem) scale(1);
}

/* Línea usando ::after en el span text-content */
.boton-cuadro .text-content::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; /* Distancia de la línea al texto */
  width: 0;
  height: 2px; /* Grosor de la línea */
  background-color: var(--text-light);
  transition: width 0.35s cubic-bezier(0.25, 0.1, 0.25, 1); /* Transición ligeramente más larga */
  will-change: width;
}

.footer-card:hover .boton-cuadro .text-content::after {
  width: 100%;
}
/* --- Fin Estilos para el efecto hover del botón --- */

#cursor-follower-dot {
  position: fixed;
  width: 12px; /* Tamaño de la bolita */
  height: 12px; /* Tamaño de la bolita */
  background-color: var(--primary-color); /* Color de la bolita */
  border-radius: 50%;
  pointer-events: none; /* Para que no interfiera con clics */
  z-index: 999999; /* Encima de otros elementos */
  /* left y top se actualizan con JS, la transición suaviza el movimiento */
  transition: left 0.1s ease-out, top 0.1s ease-out, opacity 0.3s ease-out,
    transform 0.1s ease-out;
  opacity: 0; /* Inicialmente oculta */
  /* Se usará para un pequeño efecto de escala al interactuar */
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 1024px) {
  .card-title {
    font-size: 4rem;
    font-weight: 700;
    color: #000;
    line-height: 1;
    letter-spacing: -7px;
  }
}
.foter-mai {
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.1;
}
.chao {
  display: none;
}
.contacto-footer {
  text-align: right;
}
.legal-footer {
  text-align: right;
  font-size: 1.3rem;
}
.copyright-footer {
  text-align: left;
  font-size: 1.3rem;
}

/* --- Mobile Navbar Adjustments --- */
@media (max-width: 760px) {
  /* Breakpoint para tabletas y móviles (debajo de lg) */

  .legal-footer {
    margin-top: 10px;
    text-align: left;
    font-size: 0.8rem;
  }
  .copyright-footer {
    margin-top: 10px;
    text-align: left;
    font-size: 0.8rem;
  }

  #Capa_2 {
    max-width: 300px !important;
    width: 300px !important;
    height: auto !important;
  }
  .contacto-footer {
    text-align: left;
  }

  .sdasdasdsa {
    margin-top: 50px !important;
  }

  .footer-card {
    background-color: var(--footer-bg);
    color: var(--text-light);
    overflow: hidden;
    position: relative;
    padding: 40px 40px;
    border-radius: 10px;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    justify-content: space-between;
    overflow: hidden;
    padding: 1.5rem;
    position: relative;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .review-section p {
    display: none;
  }
  .chao {
    display: block;
  }
  .mostrar {
    display: none;
  }
  .center-celular {
    text-align: center !important;
  }

  .foter-mai {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.1;
  }
  .review-section {
    padding: 6rem 0px 3rem 0px;
    position: relative;
    /* overflow: hidden; */
  }

  .footer-section {
    padding: 2rem 0px;
    position: relative;
    text-align: center;
    padding-bottom: 29px;
  }

  .phone-mockup {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    transform-style: preserve-3d;
    transform: rotateY(0deg) rotateX(0deg);
    transition: transform 0.6s ease;
  }
  .swiper {
    width: 100%;
    padding-top: 0px; /* Asegurado desde original */
    padding-bottom: 0px;
  }
  .hero-section {
    padding: 7rem 0 0rem;
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: auto;
  }
  .menu-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 8px 15px;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    font-size: 12px;
  }

  .services-section .services-title {
  }

  .clients-section {
    padding: 0rem 0 0rem;
  }
  .hero-image-container {
    position: relative;
    perspective: 1000px;
    min-height: 445px;
  }
  .card-features {
    display: none;
  }

  .input-link {
    color: var(--text-black);
    text-decoration: none;
    border: 1px solid white;
    padding: 0px 15px 0px 5px;
    font-weight: 400;
    background-color: #fff;
    margin-right: 0px;
  }

  .btn-demo {
    border-radius: 40px !important;
    font-size: 0.8rem;
    padding: 10px 15px;
    width: 100%;
    margin: 0 auto;
  }
  .hero-text p {
    font-size: 0.89rem;
    margin-bottom: 2rem;
    font-weight: 400;
    font-weight: 400;
  }
  /* Estilos para navbar móvil */
  .navbar {
    padding: 0.75rem 0;
  }

  .navbar .container {
    display: flex;
    flex-wrap: nowrap; /* No permitir envolver elementos */
    justify-content: space-between; /* Distribuir espacio entre elementos */
    align-items: center; /* Alinear verticalmente */
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 15px; /* Espacio a la izquierda */
    padding-right: 15px; /* Espacio a la derecha */
  }

  .navbar .navbar-brand {
    /* El enlace <a> que contiene el logo SVG */
    order: 1; /* Logo en primera posición (izquierda) */
    width: auto; /* Ancho automático, no todo el ancho */
    text-align: left; /* Alineado a la izquierda */
    margin-bottom: 0; /* Sin margen inferior */
    margin-right: auto; /* Empuja el resto de elementos a la derecha */
    position: static !important;
    transform: none !important;
    padding: 0;
    margin-left: 0 !important;
  }

  .navbar .navbar-brand .logo {
    /* El SVG del logo */
    max-width: 160px; /* Tamaño un poco más grande para móvil */
    height: auto;
    display: inline-block;
  }

  /* Botón "Ya soy cliente" en segunda posición */
  .navbar .boton-menu {
    order: 2;
    margin-right: 0.5rem; /* Espacio entre botón y hamburguesa */
  }

  /* Ocultar el botón "¡Empieza ya!" y la bandera en móvil */
  .navbar .d-flex.align-items-center {
    display: none !important;
  }

  /* Botón hamburguesa con tres puntos */
  .hamburger-menu {
    order: 3;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;

    cursor: pointer;
    display: block;
    border-radius: 100%;
    transition: background-color 0.3s ease;
    background: #ff4057;
  }

  .hamburger-menu:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .hamburger-menu:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
  }

  /* Los botones .boton-menu y .d-flex.align-items-center se colocarán en una fila debajo del logo */
  /* .navbar .boton-menu { } */
  /* .navbar .d-flex.align-items-center { } */

  /* Eliminamos los ajustes de tamaño para botones e icono/bandera para que usen los tamaños de escritorio */
  /* .navbar .boton-menu .menu-btn {
        padding: 0.35rem 0.8rem; 
        font-size: 0.8rem;   
    } */
  h2
    /* .navbar .boton-menu .menu-btn-icon {
        padding: 0.35rem 0.5rem; 
        font-size: 0.8rem;    
    } */

    /* .navbar .d-flex.align-items-center .iniciar-btn {
        padding: 0.35rem 0.8rem; 
        font-size: 0.8rem;    
    } */
    /* .navbar .language-flag img {
        width: 28px;  
        height: auto; 
        vertical-align: middle; 
    } */

    /* --- Responsive Adjustments for sections --- */

    /* Clients Section */
    .clients-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .clients-section h2 {
    font-size: 1.6rem; /* Reducido */
    margin-bottom: 2rem;
  }
  .mySwiper .client-logo {
    width: 70px;
    height: 70px;
  }

  /* Services Section */
  .services-section .texto-cards2 {
    padding-bottom: 2rem;
    /* Pinning de este elemento se desactivará en JS para móvil */
  }
  .services-section .services-title {
    font-size: 2rem;
    letter-spacing: -1.5px;
    line-height: 1.2;
  }
  .footer-title {
    font-size: 2rem;
    letter-spacing: -1.5px;
    line-height: 1.2;
    text-align: center;
  }
  .boton-cuadro {
    font-weight: 400 !important;
    font-size: 1.7rem;
    color: var(--text-light);
    display: inline-block;
    text-decoration: none;
    letter-spacing: -2px;
  }

  .boton-cuadro .text-content {
    display: inline-block;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
    border: solid 1px;
    border-radius: 50px;
    background-color: #ff405700;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 1px 21px;
    text-decoration: none;
    border: solid 2px;
  }
  .review-title {
    color: #fff;
    font-size: 2rem;
    letter-spacing: -1.5px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 1.5rem;
    display: none;
  }

  .services-section > .container.texto-cards2 > p {
    /* Párrafo debajo del título de la sección de servicios */
    font-size: 1rem;
    padding-left: 15px;
    padding-right: 15px;
  }

  .menu-card,
  .reservas-card,
  .pedidos-card,
  .encuestas-card,
  .marketing-card {
    padding: 30px 0 40px; /* Aumentado padding-bottom ligeramente para dar espacio */
    margin-top: 0 !important; /* Clave para flujo normal si se desactiva pinning */
    border-top-right-radius: 40px; /* Reducido */
    /* La primera card puede necesitar border-top-left-radius si el pinning se quita */
  }

  .marketing-card {
    padding-bottom: 40px; /* Consistente con las otras */
  }
  /* Quitar el margin-top negativo para que fluyan naturalmente en móvil */
  .reservas-card,
  .pedidos-card,
  .encuestas-card,
  .marketing-card {
    margin-top: -2rem !important; /* Añadir un espacio entre cards si no hay pinning */
  }

  .card-content {
    padding: 0 6px;
  }
  .card-title {
    font-size: 2.5rem; /* Reducido */
    letter-spacing: -2px;
    margin-bottom: 1rem;
    line-height: 1.1;
  }
  .card-text {
    font-size: 0.9rem;
    max-width: 100%;
    margin-bottom: 1.5rem !important;
  }
  .card-features {
    margin-top: 20px;
    padding-left: 5px; /* Menos padding si los bullets están alineados */
  }
  .card-features li {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .card-features .bullet {
    margin-right: 8px;
    font-size: 1.2rem; /* Hacer el bullet un poco más prominente */
  }
  .card-image-container {
    margin-top: 25px;
    padding: 0 10px; /* Para que la imagen no toque los bordes si es 100% */
    margin-bottom: 2rem;
  }
  .card-image {
    max-width: 100%; /* Usar todo el ancho disponible */
    border-radius: 10px; /* Mantener algo de radio */
  }

  /* Testimonials Section */
  .testimonials-section {
    padding: 3rem 0;
  }
  .device-showcase {
    padding: 2rem 0;
    margin-bottom: 0px !important;
  }
  .testimonials-title {
    font-size: 1.8rem;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    padding-left: 15px; /* Añadir padding para que no pegue a los bordes */
    padding-right: 15px;
  }
  .restaurant-container {
    margin-top: 0rem;
    margin-bottom: 1rem;
    overflow: hidden;
    /* position: absolute; */
  }

  .type-overlay h3 {
    font-size: 0.7rem;
  }
  /* Ajustes específicos para el swiper de tipos de establecimientos en móvil si es necesario */
  .typeSwiper .swiper-slide {
    min-width: 180px; /* Ajustar si el min-width de 200px es mucho */
    height: auto;
  }
}
/* --- Fin Mobile Navbar Adjustments --- */
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999 !important;
}
/* Custom cursor for review videos */
.review-section .video-wrapper:hover {
  cursor: url("cur.png") 17 17, auto; /* Centered for a 35x35 image */
}

.cambio-color {
  background-color: #051c2c;
  position: relative;
}
.logos-aliados-co {
  /* background: #fff; */
  /* margin: 2rem; */
  /* border-radius: 50px; */
  filter: brightness(0) invert(1);
  align-items: center;
  padding-bottom: 35px;
}

.link-menu {
  text-decoration: none;
  color: var(--text-light);
}
.link-menu:hover {
  text-decoration: none;
  color: var(--text-light);
}



/* ===== MODAL DE VIDEO ===== */
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999999999999999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease-out;
}

.video-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: 90%;
  max-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
  position: absolute;
  top: 0px;
  right: 0;
  background: var(--primary-color);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
}

.video-modal-close:hover {
  background: #ff1a32;
  transform: scale(1.1);
}

/* Animaciones */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalSlideIn {
  from {
    transform: scale(0.7) translateY(50px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.video-modal.show .video-modal-content {
  animation: modalSlideIn 0.4s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
  .video-modal-content {
    width: 95%;
    height: 85%;
  }
  
  .video-modal-close {
    top: -40px;
    right: -10px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .video-modal-content {
    width: 98%;
    height: 80%;
  }
  
     .video-modal-close {
        top: -43px;
        right: 20px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}
