:root {
  --color-dark: #1a1a1a;
  --color-light: #f5f5f5;
  --color-cream: #F5F5DC;
  --color-initial-text: #4a4a4a;
  --transition-duration: 0.3s;
  --orange: #ff8c00; /* Definir --orange aquí */
}

body {
    font-family: 'Tasa Explorer', sans-serif;
    background-color: var(--color-light);
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	cursor:default;
	
}

/* Estilos de la barra de navegación */
#main-nav {
  position: fixed;
  top: 10px; /* Cambiado a 10px para evitar el '0' */
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  padding: 10px 0;
  background-color: rgba(26, 26, 26, 0);
  backdrop-filter: blur(5px);
  z-index: 1000;
  transition: padding var(--transition-duration) ease-in-out, width var(--transition-duration) ease-in-out, background-color var(--transition-duration) ease-in-out;
  overflow: hidden;
  border-radius: 50px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

/* Estilos de los elementos de navegación */
.nav-left, .nav-right, .nav-center {
  display: flex;
  align-items: center;
}

.nav-left { flex: 1; justify-content: flex-start; }
.nav-right { flex: 1; justify-content: flex-end; }
.nav-center { flex: 1; justify-content: center; }

.nav-name, .nav-button {
  color: var(--color-initial-text);
  text-decoration: none;
  font-weight: bold;
  transition: color var(--transition-duration) ease;
}

.nav-name {
  font-family: 'Tasa Explorer', sans-serif;
  font-size: 1.5rem;
  transition: opacity var(--transition-duration) ease, color var(--transition-duration) ease;
}

.nav-button {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  padding: 10px 15px;
  border: none;
  margin: 0 5px;
  position: relative;
  transition: color var(--transition-duration) ease;
}

/* Subrayado animado para los botones */
.nav-button::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 0;
  height: 2px;
  background-color: var(--color-initial-text);
  transition: all var(--transition-duration) ease-in-out;
  transform: translateX(-50%);
}

.nav-button:hover::after {
  width: 100%;
}

.nav-button:hover {
    color: var(--color-dark);
}

.nav-button:hover::after {
    background-color:  #ff8c00;
}

/* Estilos para el contenido de prueba */
.content-placeholder {
  min-height: 200vh;
  background-color: #ff8c00;
  color:  #ff8c00;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Responsive design */
@media (max-width: 768px) {
  #main-nav {
    width: 95vw!important;
    border-radius: 50px;
    margin:0;
  }
	
	.nav-button {
  font-family: 'Roboto', sans-serif;
  font-size: 12px!important;
  padding: 10px 5px;
  border: none;
  margin: 0 5px;
  position: relative;
  transition: color var(--transition-duration) ease;
}
}

/* --- HERO SECTION STYLES --- */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  text-align: left;
  padding: 0 5vw;
  box-sizing: border-box;
  overflow: hidden;
}

.hero-title {
  font-family: 'Tasa Explorer', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--color-dark);
  font-weight: 500;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.05em;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  
}

.word-wrapper {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin: 0 0.5vw;
  height: 1.1em;
  padding: 0.5vh 0;
}

.hero-word {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  will-change: transform, opacity;

}

.hero-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  color: var(--color-initial-text);
  margin-top: 20px;
  line-height: 1.4;
  overflow: hidden;
  will-change: transform, opacity;
  padding:0 15px;
  max-width:60vw;
}

.line-wrapper {
  display: block;
  overflow: hidden;
}

.hero-line {
  display: block;
  transform: translateY(100%);
  opacity: 0;
  will-change: transform, opacity;
}

/* Responsive adjustments for hero */
@media (max-width: 768px) {
  .hero-title {
      font-size: clamp(2.5rem, 10vw, 4.5rem);
      line-height: 1;
  }
  .word-wrapper {
      margin: 0 0.2em;
      height: 1em;
  }
  .hero-subtitle {
      font-size: 1.1rem;
	  max-width: 90vw;
  }
}

/* --- Estilos para la nueva sección de imagen --- */
.sticky-image-section {
  position: relative;
  height: 200vh; /* Altura para permitir que la imagen se desplace antes de volverse sticky */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 100px;
}

/* --- Media Query para dispositivos móviles --- */
@media (max-width: 768px) {
  .sticky-image-section {
      /* Altura optimizada para móviles (ejemplo: 150vh) */
      height: 150vh;
  }
}

.image-wrapper {
  position: sticky;
  top: 100px; /* Distancia desde la parte superior de la pantalla */
  width: 80vw;
  height: auto;
  overflow: hidden;
  will-change: transform, width, background-color;
  transition: width 0.5s ease-out, background-color 0.5s ease;
}

.sticky-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}




/* Responsive para móviles */
@media (max-width: 768px) {
  .sticky-image {
    width: 100%;
    height:70vh;}



}


/* --- Transición de fondo de la página --- */
body.dark-bg {
  background-color: #4a4a4a;
  transition: background-color 0.5s ease;
}

/* --- Ajuste de colores para la sección de proyectos --- */
.work-section {
  padding: 100px 5vw;
}

body.dark-bg .work-header-container h2,
body.dark-bg .project-card,
body.dark-bg .project-title {
  color: var(--color-light); /* Cambia el color del texto a claro */
}

body.dark-bg .project-description {
  color: rgba(255, 255, 255, 0.7); /* Un color gris claro para la descripción */
}

body.dark-bg .project-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

body.dark-bg .custom-cursor {
  background-color: rgba(245, 245, 245, 0.5); /* Cambia el color del cursor */
}

/* --- WORK SECTION STYLES --- */
.work-section {
  margin: 0 0.5vw;
}

.work-header-container h2 {
  font-family: 'Tasa Explorer', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--color-dark);
  margin: 0;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.05em;
  text-align: left;
  margin-bottom: 50px;

}

.projects-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
  gap: 40px;
}

.project-card {
  text-decoration: none;
  color: var(--color-dark);
  display: block;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
  border-radius: 10px;
}

.project-card::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.3s ease, border-color 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.project-card:hover::after {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.5);
}

.project-image-wrapper {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
  transform: scale(1.05);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-info {
  padding: 15px 0;
}

.project-title {
  font-family: 'Tasa Explorer', sans-serif;
  font-size: 1.5rem;
  margin: 0;
}

.project-description {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  margin: 5px 0 0;
  color: var(--color-initial-text);
}

/* Hover Effect */
.project-card:hover {
  cursor: none;
background-color:transparent!important;
}

/* Scroll Animation */
.hidden-on-load {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible-on-scroll {
  opacity: 1;
  transform: translateY(0);
}

/* Cursor Personalizado */
.custom-cursor {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(26, 26, 26, 0.1);
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

/* Estilos para el nuevo diseño del encabezado de proyectos */
.work-header-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.work-header-content {
  max-width: 600px;
  text-align: left;
  margin-right: 20px;
}

.work-header-content h2 {
  margin-bottom: 20px;
}

.work-description {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: var(--color-initial-text);
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

/* Ajuste para el botón Ver todos los proyectos */
.view-all-button {
  font-family: 'Tasa Explorer', sans-serif;
  font-size: 1.2rem;
  color: var(--color-dark);
  text-decoration: none;
  position: relative;
  padding-bottom: 5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Estilos del círculo con flecha */
.arrow-circle {
  width: 50px;
  height: 50px;
  background-color: #ff8c00!important;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.arrow-icon {
  width: 20px;
  height: 20px;
  color:#ffffff!important;
  transform: translateX(0);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.view-all-button:hover .arrow-circle {
  transform: translateX(5px);
}

.view-all-button:hover .arrow-icon {
  transform: translateX(2px);
}

/* El underline naranja del botón */
.view-all-button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ff8c00;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.view-all-button:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Inversión de colores para el nuevo texto y botón en modo oscuro */
body.dark-bg .view-all-button {
  color: var(--color-light);
}

body.dark-bg .view-all-button .arrow-circle {
  background-color: var(--color-light);
}

body.dark-bg .view-all-button .arrow-icon {
  color: #4a4a4a;
}

body.dark-bg .view-all-button::after {
  background-color: var(--color-light);
}

/* Inversión de colores para el nuevo texto y botón en modo oscuro */
body.dark-bg .work-description,
body.dark-bg .view-all-button {
  color: var(--color-light);
}

body.dark-bg .view-all-button::after {
  background-color: #ff8c00;
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .work-header-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .work-header-content {
      margin-right: 0;
      margin-bottom: 20px;
      text-align: left;
  }

  .view-all-button {
    text-align: left;
   margin:auto;
   margin-left:0px;

  }

  .projects-grid-container {
    display: grid;
    grid-template-columns: auto;
    gap: 20px;
  }
	
	.arrow-circle {display:none!important;}
}

/* Carrusel de Logos */
.logo-carousel-section {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
  background-color: var(--color-light);
}

.logo-carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-carousel-track {
  display: flex;
  width: calc(250px * 14);
  animation: scroll-logos 40s linear infinite;
  will-change: transform;
}

.logo-img {
  width: 200px;
  height: auto;
  margin: 0 25px;
  filter: grayscale(100%);
  opacity: 0.6;
}

/* Efecto de loop infinito con duplicación */
.logo-carousel-track img:nth-child(n+8) {
  animation: none;
}

/* Pseudo-elementos para el degradado en los laterales */
.logo-carousel-container::before,
.logo-carousel-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 10%;
  height: 100%;
  z-index: 10;
}

.logo-carousel-container::before {
  left: 0;
  background: linear-gradient(to right, var(--color-light), rgba(255, 255, 255, 0));
}

.logo-carousel-container::after {
  right: 0;
  background: linear-gradient(to left, var(--color-light), rgba(255, 255, 255, 0));
}

/* Animación de movimiento */
@keyframes scroll-logos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-250px * 7));
  }
}

/* Versión en modo oscuro */
body.dark-bg .logo-carousel-section {
  background-color: #4a4a4a;
}

body.dark-bg .logo-carousel-container::before {
  background: linear-gradient(to right, #4a4a4a, rgba(74, 74, 74, 0));
}

body.dark-bg .logo-carousel-container::after {
  background: linear-gradient(to left, #4a4a4a, rgba(74, 74, 74, 0));
}

/* Sección de Servicios (SCROLL HORIZONTAL) */
#services-section {
  position: relative;
  height: 550dvh;
}

@media (max-width: 768px) {
  #services-section {
      height: 450dvh;
  }
}

.services-cards-wrapper {
  position: sticky;
  top: 0;
  padding-top: calc(var(--header-height) + 5vmax);
  padding-left: 6vw;
  height: 100vh;
  overflow: hidden;
}

.sticky-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-title {
  font-family: 'Tasa Explorer', sans-serif;
  font-size: clamp(2.5rem, 8vw, 6rem);
  color: var(--color-light);
  margin-bottom: 2vmax;
  letter-spacing: -0.05em;
  font-weight: 500;;
  

}

.services-cards-container {
  display: flex;
  gap: 2vmax;
  width: fit-content;
}

.service-card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-card {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: max(1.6rem, 2vmax);
  padding: 3vmax;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--color-dark);
  position: relative;
  height: clamp(25rem, 50vmax, 35vmax);
  width: clamp(18rem, 35vmax, 25vmax);
}

@media (min-width: 768px) {



  .service-card {
      height: clamp(25rem, 60vmin, 35vmax);
      width: clamp(20rem, 25vmax, 25vmax);
  }
	
	.services-cards-wrapper {
  position: sticky;
  top: 45px!important;
  padding-top: calc(var(--header-height) + 5vmax);
  padding-left: 6vw;
  height: 100vh;
  overflow: hidden;
}
  
}

.service-number {
  font-size: max(1rem, 1.2vmax);
  color: rgba(255, 255, 255, 0.4);
}

.service-title {
  font-size: clamp(2.2rem, 3vmax, 3vmax);
  font-weight: 500;
  color: #ff8c00;
  text-transform: uppercase;
  margin-top: 1vmax;
  line-height: 100%;
}

.service-description {
  font-size: max(1rem, 1.2vmax);
  color: rgba(255, 255, 255, 0.7);
  line-height: 120%;
  padding-top: 1.5vmax;
}

/* PÁGINA DE TRABAJOS */
.work-page-main {
  padding: 50px 5vw;
}

.work-header-image {
  padding-top: 100px;
  padding-bottom: 20px;
}

.work-title-image {
  font-family: 'Tasa Explorer', sans-serif;
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.05em;
  color: var(--color-dark);
}

/* FILTROS DE PROYECTOS */
.filter-tabs-image {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  margin: 20px 0 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.filter-btn-image {
  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 10px 0;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  color: rgba(0, 0, 0, 0.5);
  border-bottom: 2px solid transparent;
}

.filter-btn-image:hover,
.filter-btn-image.active {
  color: var(--color-dark);
}

.filter-btn-image.active {
  border-bottom: 2px solid var(--orange);
}

.filter-count {
  margin-left: 5px;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.3);
}

/* CUADRÍCULA DE PROYECTOS */
.projects-grid-image {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media (max-width: 768px) {
  .projects-grid-image {
      grid-template-columns: 1fr;
  }
}

.project-card-image {
  display: flex; /* Mantengo flex porque así lo tienes en el HTML */
  flex-direction: column;
  text-decoration: none;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease;
}

/* Clase para ocultar los proyectos */
.project-card-image.hidden {
  opacity: 0;
  visibility: hidden;
  height: 0;
  margin: 0;
}

.image-wrapper-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.image-wrapper-image img {
  width: 100%;
  height: auto;
  display: block;
}

.project-info {
  margin-top: 15px;
}

.project-title-image {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0;
  line-height: 1.2;
  color: var(--color-dark);
  font-weight: 500;
}

.project-description-image {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 5px;
  line-height: 1.4;
}

.project-card-image.hidden {
  display: none;
}





/* El contenedor del preloader, que cubre toda la pantalla */
.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000; /* Fondo negro como el de la web de ejemplo */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

/* El contenedor de las palabras */
.loading-words {
  display: flex;
  align-items: center;
  font-size: 4rem; /* Ajusta el tamaño de la fuente */
  color: #fff;
  overflow: hidden; /* Oculta las palabras que están fuera de la vista */
}

/* Estilo para el punto animado */
.loading-words__dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 15px;
  animation: pulse 1.5s infinite; /* Un pequeño efecto de "pulsación" */
}

/* La animación del punto */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.5); }
}

/* Clase para la animación de las palabras */
.word-enter {
  animation: word-fade-in 0.8s forwards;
}

.word-exit {
  animation: word-fade-out 0.8s forwards;
}

/* Animación de entrada: sube y se desvanece */
@keyframes word-fade-in {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Animación de salida: sube y se desvanece */
@keyframes word-fade-out {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}








/* FOOTER */
:root {
  --footer-bg-color: #f8f8f8;
  --footer-text-color: #4a4a4a;
  --footer-link-color: #4a4a4a;
  --footer-link-hover-color: --orange;
  --start-project-bg: --orange;
  --start-project-text: #1a1a1a;
  --iaap-bg: #4c4c4c;
  --iaap-text: #4a4a4a;
}


/* Estilos generales del footer */
.squee-footer {
  background-color: var(--orange);
    color: black;
    font-family: 'Roboto', sans-serif;
    padding: 80px 5vw 0px 5vw;
    margin: 0 3vw;
    border-radius: 25px 25px 0 0;
}

.footer-container {
  max-width: 100%;
    margin: 0 auto;
    padding: 5vh 5vw 80px 5vw;
    height: auto;
    background-color: #f8f8f8;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

/* Estilos de las columnas */
.column-heading {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li a {
  text-decoration: none;
  color: var(--footer-link-color);
  font-size: 0.9rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: var(--orange);
}

.footer-column p,
.footer-column address {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 10px 0;
  font-style: normal;
}

/* Estilos del botón y el badge */
.start-project-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.start-project-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background-color: var(--start-project-bg);
  color: var(--orange);
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid #b3b3b3;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.start-project-button:hover {
 
  color: var(--orange);
}

.iaap-badge-placeholder {
  width: 160px;
  height: 60px;
  background-color: var(--iaap-bg);
  border: 1px solid var(--footer-text-color);
  color: var(--iaap-text);
  font-size: 0.7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5px;
  text-align: center;
}

/* Estilos de la parte inferior */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
  padding-top: 20px;
  border-top: 1px solid #4a4a4a;
  font-size: 0.8rem;
}

.footer-copyright {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.footer-copyright a {
  text-decoration: none;
  color: var(--footer-link-color);
}

.footer-social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 24px;
  height: 24px;
  color: var(--footer-text-color);
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: var(--footer-link-hover-color);
}

/* Diseño adaptable */
@media (max-width: 1024px) {
  .footer-columns {
      grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-columns {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
  }
  .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 20px;
  }
  .footer-copyright {
      flex-direction: column;
  }
}

@media (max-width: 480px) {
  .footer-columns {
      grid-template-columns: 1fr;
  }
}


/* Contenedor del carrusel */
.infinite-carousel-container {
  width: 100%;
  overflow: hidden;
  background-color: var(--footer-bg-color);
  padding: 20px 0;
  white-space: nowrap;
  box-sizing: border-box;
  border-radius: 25px 25px 0 0;
}

/* Pista de animación del carrusel */
.infinite-carousel-track {
  display: inline-block; /* Permite que los elementos se posicionen uno al lado del otro */
  animation: scroll-left 60s linear infinite; /* Animación principal */
}

/* Animación del desplazamiento de izquierda a derecha */
@keyframes scroll-left {
  0% {
      transform: translateX(0%);
  }
  100% {
      transform: translateX(-50%); /* Se desplaza la mitad del contenido duplicado */
  }
}

/* Estilo del texto */
.carousel-text {
  font-family: 'Tasa Explorer', sans-serif; /* Puedes ajustar la fuente */
  font-size: clamp(2rem, 6vw, 4rem); /* Tamaño responsivo del texto */
  color: #e8e8e8; /* Color del texto */
 
  font-weight: bold;
  margin-right: 30px; /* Espacio entre las repeticiones de la frase */
  display: inline-block; /* Permite aplicar márgenes */
}