    @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Roboto+Slab:wght@100..900&display=swap');


    body, html {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: 'Montserrat', sans-serif;
    }

    .background {
      background-image: url('../img/imgini2.png'); /* Reemplaza con la URL de tu imagen */
      background-size: cover;
      background-position: center;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      color: white;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    h1 {
      font-size: 3em;
      margin: 0 0 20px 0;
    }

    .btn {
      padding: 12px 24px;
      font-size: 1.2em;
      color: #0a3e44;
      background-color:#93d3c4;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .btn:hover {
      background-color: #0a3e44;
      color:#93d3c4;
    }

    .carousel-container {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding: 40px 20px;
  scrollbar-width: thin;
  scrollbar-color: #3498db #ccc;
}

#cotizar-title {
  display:none;
}

#content1 {
  background-color: #93d3c4;
}

#card1 {
  background-color:#0a3e44;
}

#card-content1{
  color:#93d3c4;
}

#card2 {
  background-color:#0a3e44;
}

#card-content2 {
  color:#93d3c4;
}

.carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.3s ease;
}

.card {
  background-color: white;
  border-radius: 10px;
  flex: 0 0 calc(25% - 20px); /* 4 tarjetas por fila con margen */
  max-width: calc(25% - 20px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height:450px;
}

.card-image-container {
  height: 350px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.card-title {
  font-weight: bold;
  font-size: 1rem;
  color:#93d3c4;
}

.card-modelo {
  font-size: 1.1rem;
  color:#93d3c4;
}

.card-dimensiones {
  font-size: 0.9rem;
  color:#93d3c4;
}

.button-group {
  display: flex;
  gap: 0.5rem;
}

.button {
  padding: 0.5rem 1rem;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button.read {
  background-color: #3498db;
  color: white;
  font-family: 'Montserrat', sans-serif;
}

.button.quote {
  background-color: #2ecc71;
  color: white;
  font-family: 'Montserrat', sans-serif;
}

.button:hover {
  opacity: 0.9;
}

.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}


.modal-content {
  background-color: #fff;
  padding: 20px;
  width: 90%;
  max-width: 700px;
  border-radius: 10px;
  position: relative;
}

.modal-leer-content {
  background-color:#93d3c4;
  padding:30px;
  border-radius: 8px;
  display: flex;
  flex-wrap: nowrap;           /* Evita que los elementos salten de línea */
  gap: 20px;
  align-items: flex-start;     /* Alinea arriba los dos bloques */
  width: 900px;
  height:400px;
}

.modal-details p {
  margin:20px 5px;
  margin-right:200px;
  color:#0a3e44;
}

.close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 25px;
  cursor: pointer;
}

.carousel {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
}

.carousel-leer{
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;

  
}

.carousel-img {
  width: 100%;
  height: 100%;
  display: none;
  object-fit: cover;
  border-radius: 8px;
}

#img1, #img2, #img3 {
  width:300px;
  height:350px;
  flex: 1;
  position: relative;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px
}

.carousel-img.active {
  display: block;
}

.carousel-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.carousel-buttons button {
  background-color: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 20px;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 10%;
}

.carousel-buttons button:hover {
  background-color:#1c2833;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 5%;
}

.carousel-arrow.left {
  left: 10px;
}

.carousel-arrow.right {
  right: 10px;
}

.video-carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.video-item {
  flex: 0 0 auto;
  width: 300px;
  height: 600px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

    .carousel-container-videos{
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding: 40px 20px;
  background-color: #f4f4f4;
  scrollbar-width: thin;
  scrollbar-color: #3498db #ccc;
  justify-content: center;
  align-items: center;
  padding-left:275px;
}

.carousel-wrapper.videos {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  padding: 0;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: rgba(0,0,0,0.5);
  color: white;
  font-size: 30px;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}


.carousel-arrow.left {
  left: 10px;
}

.carousel-arrow.right {
  right: 10px;
}

.carousel-arrow:hover {
  background-color: rgba(0,0,0,0.8);
}

.carousel-container-img {
  position: relative;
  width: 90%;
  margin: 50px auto;
  overflow: hidden;
  max-width: 1500px;
  height:300px;
}

.carousel-img {
  display: flex;
  transition: transform 0.5s ease;
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  height:500px;
}

.carousel-img::-webkit-scrollbar {
  display: none; /* Chrome */
}

.carousel-img-tab {
  flex: 0 0 auto;
  width: 400px;
  height: 300px;
  object-fit: contain; /* Muestra la imagen completa sin recorte */
  margin-right: 10px;
  border-radius: 8px;
  background-color: white; /* Fondo por si las imágenes no ocupan todo el espacio */
  padding: 10px;
}


.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  font-size: 24px;
  cursor: pointer;
  z-index: 1;
  border-radius: 10%;
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}

.video-button {
  margin-top: 0px;
  padding: 10px 20px;
  background-color: #2980b9;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}

.video-button:hover {
  background-color: #1c5980;
}

/* Estilos del modal general */
#modal-video {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto; /* Scroll vertical si el contenido lo requiere */
  background-color: rgba(0, 0, 0, 0.7);
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Contenido interno del modal */
.video-modal-content {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  border-radius: 12px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  position: relative;
}

/* Título del modal */
#video-title {
  margin-top: 0;
  margin-bottom: 20px;
  color: #0a3e44;
  font-size: 24px;
  text-align: center;
}

/* Botón de cerrar */
#modal-video .close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  color: #555;
  cursor: pointer;
}

/* Estilo del video */
#modal-video video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  max-height: 80vh;
}



