/* styles.css */

body {
    margin: 0;
    padding: 0;
    background-color: rgb(207, 17, 17);
    font-family: sans-serif;
    margin-top: 160px;
}

.novedades{
    font-size: 30px;
        font-weight: 900;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 130px;
    background-color: rgb(150, 10, 10); /* Un rojo más oscuro */
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 996;
}

.logo-container {
    margin-top: 3px;
    width: 101px; /* Aumentado el tamaño */
    height: 101px; /* Aumentado el tamaño */
}

.logo {
    margin-left: 14px;
    width: 100%;
    height: 100%;
    animation: rotateLogo 3s linear infinite;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 130px;
    background-color: rgb(150, 10, 10); /* Un rojo más oscuro */
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 996;
}

.logo-container {
    margin-top: 3px;
    width: 101px; /* Aumentado el tamaño */
    height: 101px; /* Aumentado el tamaño */
}

.logo {
    margin-left: 14px;
    width: 100%;
    height: 100%;
    animation: rotateLogo 3s linear infinite;
}

/* Botón hamburguesa (icono 3 rayitas) */
.hamburguesa {
  position: absolute;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: white;
}

/* Menú lateral oculto por defecto */
.menu-lateral {
  font-family:  sans-serif;
  height: 100%;
  width: 250px;
  background-color: #111; /* Cambiá este color si querés */
  position: fixed;
  top: 0;
  right: -250px; /* Oculto a la derecha */
  transition: right 0.3s ease;
  z-index: 2000;
  padding-top: 60px;
}

/* Enlaces del menú */
.menu-lateral a {
  padding: 15px 25px;
  display: block;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* Hover sobre enlaces */
.menu-lateral a:hover {
  background-color: #333; /* Cambiá este color si querés */
}

/* Botón para cerrar (X) */
.menu-lateral .cerrar {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: white;
}


.page-container {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;    /* Centers vertically */
    height: 100%;           /* Full height for perfect centering */
  }

  /* Container style */
  .retro-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000; /* Black background */
    border: 2px solid #fff; /* White border */
    padding: 12px;
    width: 91%;             /* Default width */
    max-width: 2000px;       /* Maximum size on large screens */
    min-width: 300px;       /* Minimum size on small screens */
    box-sizing: border-box;
    height: 60px;           /* Thin container */
  }

  /* Rectangular button */
  .retro-button.rectangular {
    display: inline-block;
    text-decoration: none;  /* Removes underline */
    background-color: #fff; /* White background */
    border: 2px solid #000; /* Black border */
    color: #000;            /* Black text */
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 7px 10px;
    box-shadow: 2px 2px 0px #888; /* Retro shadow */
    cursor: pointer;
    width: 150px;
    transition: transform 0.1s, box-shadow 0.1s; /* Smooth animation */
}

/* Hover effect */
.retro-button.rectangular:hover {
    background-color: #eee; /* Slight background change */
}

/* Click animation */
.retro-button.rectangular:active {
    transform: translateY(2px); /* Moves down slightly */
    box-shadow: 1px 1px 0px #666; /* Adjust shadow to simulate depth */
}
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .retro-container {
      width: 91%; /* Shrinks to fit smaller screens */
    }
  }

  /* Ajustes responsivos */
@media (max-width: 768px) {
    #rainbow-button {
      width: 40px;  /* Reduce el ancho */
      height: 40px; /* Reduce la altura */
      line-height: 36px; /* Ajusta el centrado del texto */
      font-size: 16px; /* Reduce el tamaño del texto */
    }
  }
  
  @media (max-width: 480px) {
    #rainbow-button {
      width: 45px;  /* Más pequeño en pantallas muy pequeñas */
      height: 45px;
      line-height: 26px; /* Ajusta el centrado del texto */
      font-size: 14px;   /* Reduce aún más el tamaño del texto */
    }
  }

@keyframes rotateLogo {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* contenedor blanco */
/* Large container ajustado a la altura de las imágenes */
.large-container {
        font-weight: 900;
    line-height: 1.5; /* Ajusta el interlineado a 1.5 */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgb(0, 0, 0);
    margin: 20px auto;
    width: 90%;
    height: auto;
    max-height: 680px; /* Ajusta la altura máxima del contenedor */
    flex-wrap: nowrap;
    padding: 7px;
}

.carousel-container {
    width: 25%; /* Carrusel solo en la izquierda */
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 1s ease;
}

.carousel-container img {
    width: 100%;
    height: auto;
}

.text-container {
    width: 60%; /* Texto en la derecha */
    padding: 20px;
    text-align: left;
}

.text-container h2 {
    font-size: 24px;
}

.text-container p {
    font-size: 16px;
    padding-bottom: 30px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.small-links img {
    width: 50px;
    height: 50px;
    margin: 10px;
}

footer {
    margin-top: 20px;
    font-size: 12px;
}

/* Media Queries para dispositivos móviles */
@media (max-width: 768px) {

    .text-container h2 {
        font-size: 18px;
    }
    
    .text-container p {
        font-size: 12px;
        padding-bottom: 20px;
    }
    
    .curved-text {
        font-size: 13px;
        padding-top: 30px;
        padding-bottom: 20px;
    }
    
    .rotating-image-container {
        margin-top: 10px; /* Casi sin margen superior en móviles */
    }

    .rotating-image {
        width: 350px; /* Tamaño en móviles */
        height: 350px;
    }

    .curved-text {
        margin-top: 5px; /* Menos espacio entre la imagen y el título */
    }

    .options-container {
        margin-top: 5px; /* Reducir distancia entre enlaces y título */
    }

    .large-container {
        flex-direction: column; /* Carrusel encima del texto en móviles */
        max-height: none; /* Sin altura máxima en móviles */
    }

    .carousel-container {
        width: 100%; /* El carrusel ocupa el 100% en móviles */
    }

    .text-container {
        width: 100%; /* Texto también al 100% */
        text-align: center; /* Centrar el texto en móviles */
    }
}

.info-box {
      max-width: 90%;
      width: 600px;
      margin: 20px auto;
      padding: 20px;
      border: 2px solid #ff0000;
      box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
      background-color: #ffffff;
      color: #000000;
      font-family: inherit;
      font-size: 16px;
      line-height: 1.5;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .gold {
      color: rgb(184, 156, 0);
    }

    /* Responsive para celulares */
    @media screen and (max-width: 480px) {
      .info-box {
        width: auto;
        margin-left: 20px;
        margin-right: 20px;
        padding: 10px;
        font-size: 12.5px;
        line-height: 1.4;
      }
    }