* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  @font-face {
    font-family: 'Klavika-Regular';
    src: url('./fonts/Klavika-Regular.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
  }
  @font-face {
    font-family: 'Klavika-Condensed_0';
    src: url('./fonts/Klavika-Condensed_0.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
  }
  @font-face {
    font-family: 'Klavika-MediumCond';
    src: url('./fonts/Klavika-MediumCond.otf') format('truetype');
    font-weight: 300;
    font-style: normal;
  }
  @font-face {
    font-family: 'klavika-boldcond';
    src: url('./fonts/klavika-boldcond.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
  }
  @font-face {
    font-family: 'Klavika_Web_Bold_Condensed_Italic';
    src: url('./fonts/Klavika_Web_Bold_Condensed_Italic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
  }

html{
  scroll-behavior: smooth;
  overflow-x: hidden;
}
 /* Estilos generales */
body {
  font-family: 'klavika-boldcond', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
}
main{
  margin: 0 2%;
  overflow-x: hidden;
}

/* Banner Animado */
.banner {
  margin-top: 2rem;
  display: flex;
  position: relative;
  justify-content: center;
  width: 100%;
  min-height: 40rem;
  padding: 5rem 0; /* Ajusta según el contenido */
  align-items: center;
  overflow: hidden;
  gap: 0;
  
}

/* Ajustes para imagen */
.image-container {
  position: absolute;
  width: 45%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}
.image-container.show {
  opacity: 1;
  transform: translateX(0);
}
.image-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* Evita que la imagen se corte */
}

/* Ajustes para el texto */
.text-container {
  position: absolute;
  right: 20%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  text-align: left;
  color: white;
  max-width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: auto;
  padding: 2rem 0;
}

/* Ajustes para el texto */


.button-container button {
  font-family: 'Klavika-Condensed_0';
  margin-top: 20px;
  padding: 15px 30px;
  font-size: 1.5rem;
  color: #000;
  background-color: #ffffff;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: scale-up-down 2s infinite ease-in-out; /* Animación continua */
}

.button-container button:hover {
  background-color: #cacaca;
}

.text-container h2,
.text-container span {
  margin: 0;
}

.text-container h2 {
  font-family: 'Klavika_Web_Bold_Condensed_Italic';
  font-size: 4.5rem;
  line-height: 3.5rem;
  color: #ED1C24
}

.text-container span {
  font-size: 3rem;
  margin-top: 10px;
}

/* Estilos para el Header */
header {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: linear-gradient(to right, black, #0a0d16);
  background-size: cover;
}
.banner::after {
  content: "";
  display: block;
  clear: both;
  height: 1px; /* Pequeño truco para que tome altura */
}

.img-logo img{
  padding-top: 5rem;
  width: 100%;
  max-width:150px ;
  height: auto;

}
/*-------NAV BAR-----------------------*/

/* Estilos básicos de la barra de navegación */
.navbar {
  position:sticky;
  top: 0; /* La coloca en la parte superior */
  width: 100%; /* Asegura que la barra ocupe todo el ancho */
  background-color: #1b1b1b;
  padding: 2rem;
  z-index: 10;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  text-align: center;
}

.navbar li {
  margin: 0 15px;
}

.navbar a {
  text-decoration: none;
  color: white;
  font-size: 2rem;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #ED1C24
; /* Cambia el color al pasar el ratón */
  text-decoration: underline;
  transform: scale(3); /* Efecto de agrandado */
}



/* Secciones */
section {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 20px;
  text-align: center;
}
 h2 {
  font-size: 4em;
  font-family: 'Klavika-Condensed_0' , sans-serif;
  margin-bottom: 10px;
}
p {
  font-size: 2em;
  font-family: 'Klavika-Condensed_0' , sans-serif;
  margin-bottom: 10px;
}

.info-general{
  margin: 0 auto;
  padding: 2rem;
  background-image: url(./img/banner2.jpg);
  background-position: center;
  background-size: cover;
  
}
.info-general .highlight {
  color: #ED1C24
;
}
.info-general a {
color: #fff;
text-decoration: none;
}
.info-general a:hover {
  text-decoration: underline;
  }

.info-general ul{
  list-style: none;
  font-size: 3rem;
  display:flex;
  flex-direction: column;
}
.info-general li{
  list-style: none;
  font-size: 3rem;
  display:flex;
justify-content:center;
align-items: center;
gap: 1rem;
}

.info-general ul img{
width: 100%;
height: auto;
max-width: 50px;
}
.line{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #6f6f6f;
  height: 1px;
  width: 100%;
}
.productos{
  margin: 5rem auto;
  padding: 2rem;
  background-image: url(./img/back_productos.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;  
}
.productos p{
  font-family:'Klavika-Regular' ;
  font-size: 1rem;
}
.productos h3{
  font-family:'Klavika-Regular' ;
  font-size: 2rem;
}

/* Carrusel de productos */
.carousel {
  position: relative;
  width: 80%; /* Ajusta esto según lo que desees */
  overflow: hidden;
  margin: 0 auto;

}

.carousel-items {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  flex: 0 0 33.33%;
  padding: 10px;
  opacity: 0.5;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform: scale(0.8); /* Las imágenes fuera del centro son más pequeñas */
}

.carousel-item.active {
  opacity: 1; /* La imagen activa será completamente visible */
  transform: scale(1); /* La imagen central será más grande */
}
.carousel-item.not-active {
  opacity: 1; /* La imagen activa será completamente visible */
  transform: scale(1); /* La imagen central será más grande */
  filter: blur(4px);
}

.carousel-item img {
  width: 100%;
  border-radius: 8px;
}
.carousel h2{
    color: #fff;
    text-align: center;
    font-size: 2rem;
}


/*texto ryzen*/

.texto-ryzen{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
  padding-top: 2rem;
}

.texto-ryzen span{
  font-family: 'Klavika-Regular';
  font-size: 2rem;
  } */


/*Stores*/

/* Estilos para el contenedor que envuelve la lista */
.stores-wrapper {
  display: flex;
  justify-content: center;  /* Asegura que el contenido esté centrado */
  padding: 0 20px; /* Ajusta si es necesario */
}

/* Estilos para la lista de tiendas */
.stores-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;  /* Centra los elementos dentro de la lista */
  gap: 20px;
  padding: 0;
  list-style-type: none;
  margin: 0;
}

/* Estilos para las tarjetas */
.store-card {
  background: #1b1b1b;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  max-width: 300px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.store-card img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.store-btn {
  font-family: 'Klavika regular';
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10px;
  background-color: #ED1C24
;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s ease;
}

.store-btn:hover {
  text-decoration: none;
  background-color: #ED1C24;
}
.store-card:hover {
  transform: scale(1.1);
}

/*JUEGA TRANSMITE AVANZA*/
.juega{
  display:flex;
  justify-content: center;
  gap: 3rem;
  margin: 0 20%;
}
.juega h3{
  font-size: 2rem;
  margin-bottom: 2rem;
}
.juega p{
  font-size: 1.2rem;
}

/*CUADRO*/
.tab-container {
  display: flex;
  width: 60%;
  margin: auto;
  border: 1px solid #ffffff;
  overflow: hidden;
  gap: 0;
}
.tab-container h2{
  font-size: 2rem;
  justify-content: flex-end;
}
.tab-container li{
font-family:'Klavika-Regular' ;
}

.tab-menu {
  display: flex;
  flex-direction: column;
  background: #000000;
  padding: 10px;
  min-width: 150px;
  border-right: 1px solid #ffffff;
}


.tab-button {
  background: none;
  border: none;
  padding: 15px;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  transition: 0.3s;
  color: #fff;
  border-bottom: 1px solid #ffffff; /* Línea entre botones */
  margin: 0;
  transition: transform 0.3s ease;
  
}

.tab-button:hover,
.tab-button.active {
  color: #ED1C24;
  font-weight: bold;
}

.tab-content {
  margin-left: 2rem;
  flex: 1;
  padding: 20px;
  text-align: left;
}

.tab-panel {
  display: none;
  flex-direction: row; /* Alinea elementos en fila */
  justify-content:space-evenly; /* Espacio entre lista e imagen */
  align-items: center; /* Centra verticalmente */
  gap: 20px; /* Espacio entre elementos */
}

.tab-panel.active {
  display: flex; /* Muestra solo la pestaña activa */
}

.tab-panel ul {
  flex: 1; /* La lista ocupa el espacio disponible */
  padding: 0;
}

.tab-panel img {
  max-width: 50%; /* Ajusta el tamaño de la imagen */
  height: auto;
}
.tab-panel table {
  width: 100%;
  border-collapse: collapse; /* Junta los bordes de las celdas */
}
.cuadro-titulo{
  margin-bottom: 2rem;
}

/*VIDEO*/ 

.video{
  margin: 5rem auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.videogame{
  margin: 0 10rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-width: 1200px;
}
.videogame iframe {
margin-top: 2rem;
  width: 100%;
  min-width: none;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  border-style: none;
}


/* CTA y botones */
.cta-section{
  margin: 5% 0;
  padding: 2rem;
}

.cta {
  text-align: center;
  font-size: 1.2em;
}
.cta h2{
font-size: 3.2rem;
}

.country-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 5rem;
}

.button {
  padding: 10px 20px;
background-color: #ED1C24;
  color: white;
  text-decoration: none;
  border-radius: 1px;
  transition: 0.3s ease;
  font-size: 2rem;
}

.button:hover {
  background-color: #bb1b20
;
  text-decoration: none;
  transform: scale(1.2);
}
.lista {
  text-align: center;  /* Centra el texto dentro de la sección */
  margin: 0 auto;
  padding: 2rem;
  background-image: url(./img/Arrow_Background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.list {
  display: flex;  /* Usamos flexbox para centrar los elementos */
  justify-content: center;  /* Centra los items horizontalmente */
  align-items: center;  /* Centra los items verticalmente */
  flex-direction: column;  /* Alinea los items de la lista en columna */
  margin: 0 auto;  /* Centra el contenedor de la lista */
  padding: 0;
}

ol {
  display: inline-block;  /* Hace que la lista ocupe solo el espacio necesario */
  padding-left: 20px;  /* Asegura que la lista tenga un margen adecuado */
  padding-bottom: 2rem;
  font-size: 1.5rem;
  text-align: left;

}

li {
  margin: 5px 0;  /* Agrega espacio entre los elementos de la lista */
}

a {
  color: #ED1C24
;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


.procesador {
  margin: 3rem 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap:2rem;
text-align: left;
  
}
.procesador .text-procesador{

}
.procesador img {
  max-width: 600px; /* Máximo ancho para el video */
  height: auto;
}

.procesador p {
  color: #fff;
  text-align: left; /* Alinea el texto a la izquierda */
  font-size: 1.5rem; /* Ajusta el tamaño del texto si es necesario */
  font-family: 'Klavika-Condensed_0';
  padding: 1rem 0;
}
.procesador ul {
  color: #fff;
  text-align: left; /* Alinea el texto a la izquierda */
  font-size: 1.5rem; /* Ajusta el tamaño del texto si es necesario */
  font-family: 'Klavika-Condensed_0';
  padding: 1rem 0;
}
.procesador span {
  color: #fff;
  text-align: left; /* Alinea el texto a la izquierda */
  font-size: 1.8rem; /* Ajusta el tamaño del texto si es necesario */
  font-family: 'Klavika-Condensed_0';
}
.procesador h3 {
  color: #fff;
  text-align: left; /* Alinea el texto a la izquierda */
  font-size: 2rem; /* Ajusta el tamaño del texto si es necesario */
}
.procesador h2 {
  color: #fff;
  text-align: left; /* Alinea el texto a la izquierda */
  font-size: 3rem; /* Ajusta el tamaño del texto si es necesario */
  line-height: 2.5rem;
}


/*sections*/

.sections {
  width: 100%;
}

.subsection {
  display: flex;
  align-items: center;
  height: 400px; /* Ajustar según el diseño */
  padding: 2rem;
  color: white;
  position: relative;
  background-size: cover;
  background-position: center;
}

.subsection.left {
  justify-content: flex-start;
  padding: 0 20% ;
}

.subsection.right {
  justify-content: flex-end;
  padding: 0 20% ;
}

.text-content {
  width: 50%;
  padding: 1.5rem;
  text-align: left;
  overflow-x: hidden;
}
.img-content{
  max-height: 100%; /* Para que no se salga del contenedor */
  max-width: 50%; /* Ajustar tamaño en relación con el contenedor */
  object-fit: contain; /* Asegura que la imagen no se deforme */
}
.img-content img{
  width: 100%;
  max-width: 20px;
}

.subsection h3 {
  color: #fff;
  text-align: left; /* Alinea el texto a la izquierda */
  font-size: 1.8rem; /* Ajusta el tamaño del texto si es necesario */
}
.subsection p {
  color: #fff;
  text-align: left; /* Alinea el texto a la izquierda */
  font-size: 1.3rem; /* Ajusta el tamaño del texto si es necesario */
}
.mobile-img {
  display: none; /* Ocultar la imagen alternativa en desktop */
}
.subsection.center {
  display: flex;
  flex-direction: column; /* Apila elementos verticalmente */
  align-items: center; /* Centra horizontalmente */
  justify-content: center; /* Centra verticalmente */
  text-align: center;
  height: 400px; /* Ajusta la altura según el diseño */
  background-size: cover;
  background-position: center;
  padding: 2rem;
}

.subsection.center .text-content {
  width: 60%;
  padding: 1.5rem;
  border-radius: 10px;
}

.subsection.center .img-content {
  max-width: 50%;
  margin-top: 1rem;
}
/* Footer */


footer {
  position: relative;
  color: white;
  padding: 40px 0;
  text-align: center;
  background-image: url(./img/Arrow_Background_SHORT.png);
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;  /* Eliminar margen adicional */
  clear: none;
  border-top: 1px solid #ffffff;
}
footer a{
  font-size: 1rem;
  text-decoration: underline;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer a:hover{
color: blue;
}

footer .footer-content {
  margin: 0;
  padding: 0;
}

footer hr {
  border: none;

  width: 100%;
  margin: 20px auto;
}

footer .footer-content {
  position: relative;
  padding-bottom: 50px;
}

footer .footer-content img {
  max-width: 100%;
}

footer .social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 0.5rem;
}

footer .social-links a img {
  width: 30px;
  height: 30px;
}

footer p {
  margin: 0;
  font-size: 16px;
}

.footer-slogan {
  text-align: center;
  padding: 1rem;
  width: 100%;
  margin: 0;
  display: block; /* Asegura que no haya espacio extra */
}

.footer-slogan img {
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
}

.slogan {
  background-color: #C1A968;
  color: #ffffff;
  padding: 1rem;
}

.slogan p {
  font-size: 1.5rem;
  line-height: 1;
}

.slogan strong {
  font-weight: bold;
}

.disclaimer{
  margin: 5% 15%;
  display: flex;
  font-family: 'Klavika-Regular';
  font-size: 0.8rem;
  line-height: 1.5rem;
  text-align: justify;

}
.disclaimer p{
  font-family: 'Klavika-Regular';
  font-size: 1rem;
  line-height: 1.5rem;

}
/* ------Keyframes button -------------------------------------------------- */


@keyframes scale-up-down {
  0% {
      transform: scale(1); /* Tamaño original */
  }
  50% {
      transform: scale(1.05); /* Aumenta el tamaño */
  }
  100% {
      transform: scale(1); /* Vuelve al tamaño original */
  }
}


/* ------MEDIA QUERYS -------------------------------------------------------- */
@media screen and (max-width: 1343px) {
  .text-container h2 {
    font-size: 3.2rem;
    line-height: 2.7rem;
  }

  .text-container span {
    font-size: 2.2rem;
  }

  .text-container p {
    font-size: 1.8rem;
  }
}
/* --- Media Queries ------------------------------------------------------------ */
@media screen and (max-width: 1024px) {
  .tab-container {
    flex-direction: column; /* Coloca los botones encima del contenido en pantallas pequeñas */
    width: 90%;
  }

  .tab-menu {
    min-width: 100%; /* El menú ocupa todo el ancho en pantallas pequeñas */
    margin-bottom: 10px; /* Espacio entre el menú y el contenido */
  }

  .tab-button {
    text-align: center; /* Centra el texto horizontalmente */
    padding: 15px 0; /* Ajusta el padding para mantener el botón centrado */
    display: flex;
    justify-content: center; /* Asegura que el contenido del botón se centre */
    align-items: center; /* Centra el texto verticalmente */
  }

  .tab-panel {
    flex-direction: column; /* Muestra la lista y la imagen en columnas */
  }

  .tab-panel img {
    max-width: 100%; /* La imagen ocupa todo el ancho disponible */
  }
  .juega{
  flex-direction: column;
  margin: 0;
  }
  .juega h3{
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  .juega p{
    font-size: 2rem;
  }

  .disclaimer{
    margin: 2%;
    display: flex;
    font-family: 'Klavika-Regular';
    font-size: 0.8rem;
    line-height: 1.5rem;
    text-align: justify;
  
  }
  .sections{
    margin: 0;
    padding: 0;

  }
  .subsection {
    flex-direction: column;
      background-image: none !important;
    height: auto;
    text-align: center;
    margin-top:1rem;
    margin-left:0;
    margin-right:0;
    padding: 0;
  }
  .img-content{
    display: none;
  }
  .text-content {
    width: 100%;
  }

  .mobile-img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }
  .subsection.center {
    flex-direction: column;
      background-image: none !important;
    height: auto;
    text-align: center;
    margin-top:1rem;
    margin-left:0;
    margin-right:0;
    padding: 0;
  }
  .subsection.left {
    flex-direction: column;
      background-image: none !important;
    height: auto;
    text-align: center;
    margin-top:1rem;
    margin-left:0;
    margin-right:0;
    padding: 0;
  }
  .subsection.right {
    flex-direction: column;
      background-image: none !important;
    height: auto;
    text-align: center;
    margin-top:1rem;
    margin-left:0;
    margin-right:0;
    padding: 0;
  }

  .subsection.center .text-content {
    width: 100%;
  }

  .subsection.center .img-content {
    max-width: 100%;
  }
  
  .procesador {
    flex-direction: column;
  }

  /* Carousel adjustments */
  .carousel {
    flex-direction: column;
    width: 100%; /* Asegura que el carousel ocupe el 100% de ancho */
  }

  .carousel-items img {
    width: 100%; /* Ajuste para una visualización óptima */
  }
  .carousel-item {
  padding: 0;
  }

  /* CTA and button adjustments */
  .cta, .button {
    font-size: 2em;
    margin: 0;
    font-family: 'Klavika-Condensed_0';
  }
  .cta h2{
    font-size: 2.5rem;
    }
   .button-container button {
  font-size: 1.5rem!important;
   }
  .country-cta {
    flex-direction: flex;
    align-items: center;
  }

  .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /* Video and content container adjustments */
  .video-container, .content {
    width: 100%;
    padding: 0;
  }

  /* Banner adjustments for mobile */
   /* Ajustes en el banner */
   .banner {
    flex-direction: column; /* Disposición en columna en móviles */
    min-height: auto; /* Se ajusta a la altura de los elementos */
    align-items: center; /* Centra los elementos en móvil */
  }

  /* Ajustes para la imagen */
  .image-container {
    width: 100%; /* Imagen ocupa el 100% del ancho */
    position: relative; /* No absoluto */
    left: 0; /* Sin transformaciones */
    transform: translateX(0); /* No transformación */
    opacity: 1 !important; /* Garantiza que sea visible */
  }

  /* Ajustes para el texto */
  .text-container {
    position: relative; /* No absoluto */
    right: 0; /* Asegura que el texto esté centrado */
    opacity: 1 !important; /* Garantiza que sea visible */
    max-width: 90%; /* Texto ocupa más espacio */
    text-align: center; /* Centra el texto */
    min-height: auto; /* Se ajusta al contenido */
  }

  /* Ajustes en el botón */
  .text-container button {
    width: 100%; /* El botón ocupa el 100% del ancho en móvil */
    font-size: 1.2rem; /* Ajuste de tamaño */
  }

  /* Ajustes en el logo */
  .img-logo {
    text-align: center;
    margin-top: 3rem;
  }
  .info-general{
    margin: 0;
    padding: 0;
  }
  .texto-ryzen h2{
    font-family: 'Klavika-Regular';
    font-size: 2.2rem;
  }
  .texto-ryzen span{
    font-family: 'Klavika-Regular';
    font-size: 1.2rem;
  } 
  .img-logo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 2rem;

  }
  .navbar a {
    font-size: 1.5rem;
  }
  .videogame {
    min-width: 100vw;
    margin: 1rem 5rem; /* Ajusta el margen en pantallas más pequeñas */
  }
  .videogame iframe {
    height: auto; /* Ajuste de altura según el tamaño del contenedor */
  }

h2 {
  font-size: 2.5em;
} 
.productos{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 0;
  
}
header h2 {
  font-size: 2.5rem;
}

}

@media screen and (max-width: 480px) {
  header h1 {
    font-size: 2em;
  }

  header p {
    font-size: 1em;
  }

  .carousel img {
    width: 100%; /* Asegura que las imágenes se ajusten correctamente */
  }

  .cta {
    font-size: 1em;
  }

  .button {
    padding: 8px 16px;
    min-width: 120px; /* Asegura que los botones tengan un tamaño mínimo */
  }
  .text-container h2  {
    font-size: 2em;
}
}
