html {
  scroll-behavior: smooth;
  position: relative;
}

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  position: relative;
}
#whatsapp {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: fixed;
  background-color: rgb(39, 214, 127);
  bottom: 3%;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  z-index: 3;
}
#whatsapp a {
  color: inherit;
}
#whatsapp:hover {
  background-color: rgb(65, 157, 65);
  cursor: pointer;
  transition: all ease-in 0.2s;
}
/*----------------------Nav bar -------------------*/
nav {
  width: 100%;
  height: 15vh;
  background-color: white;
  display: flex;
  justify-content: space-around;
  align-items: center;
  user-select: none;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
li a {
  text-decoration: none;
  color: inherit;
}

nav.shrink {
  height: 10.5vh; /* 10% menos que 15vh */
}

.logo-navbar {
  width: 148px;
  height: 38px;
  cursor: pointer;
}
#icono-hamburguesa {
  display: none;
}
nav ul {
  /*     border: 1px solid red;
 */
  list-style-type: none;
  display: flex;
}
nav ul li {
  font-family: "Montserrat", Sans-serif;
  font-size: 12px;
  font-weight: 400;
  padding-left: 10px;
  padding-right: 10px;
}
nav ul li {
  position: relative;
}
nav ul li:hover {
  cursor: pointer;
}

nav ul li::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: rgb(176, 1, 1);
  transition: width 0.2s ease;
}
nav ul li:hover::after {
  width: 100%;
}
#social-container {
  /*     border: 1px solid red;
 */
  width: 15%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}
#social-container i {
  font-size: 20px;
}
#social-container a {
  text-decoration: none;
  color: inherit;
}
#social-container i:hover {
  cursor: pointer;
  color: grey;
  transition: ease all 0.2s;
}
#viewport {
  background-color: rgb(219, 219, 219);
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* ---------------- Banner Principal ---------------- */
#banner {
  /* fondo con imagen en lugar de color */
  background: url("./assets/bg-2.jpg") center center / cover no-repeat;
  color: white;
  position: relative;
  /* diagonal en el borde inferior */
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
  padding: 60px 5%;
}

#banner .banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

#banner .banner-text {
  flex: 1;
}

#banner .banner-text h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;
}

#banner .banner-text h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60%;
  height: 4px;
  background: white;
}

#banner .banner-text p {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 30px;
  max-width: 500px;
}

.banner-btn {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  background: linear-gradient(145deg, #e60000, #ff0000);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

#banner .banner-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

#banner .banner-image img {
  max-width: 600px;
  width: 100%;
  display: block;
}

/*---------Servicios------------------------------------------------------------------------*/
#servicios {
  /*     border: 1px solid green;
 */
  width: 100%;
  height: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: bolder;
  font-size: x;
}
#services-title-container {
  width: 100%;
  height: 70px;
  background-color: rgb(216, 216, 216);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: rgb(78, 77, 77);
  margin-top: 30px;
}
#container-1 {
  width: 100%;
  height: 50%; /* 
    border: 1px solid red; */
  padding: 20px;
  display: flex;
}
#live-container i {
  font-size: 50px;
  color: red;
}
#live-container h2,
#daily-results-container h2,
#container-2 h2 {
  font-family: "Montserrat", Sans-serif;

  color: red;
  font-size: 30px;
}
#live-container,
#daily-results-container {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
#live-container p,
#daily-results-container p {
  font-family: "Montserrat", Sans-serif;
  color: #7c7c7c;
  font-size: 13px;
  width: 85%;
}
#daily-results-container i {
  color: red;
  font-size: 55px;
}
#container-2 {
  width: 100%;
  height: 50%;
  /*     border: 1px solid red;
 */
  display: flex;
  flex-direction: column;
  align-items: center;
}
#container-2 p {
  width: 30%;
  text-align: center;
  font-family: "Montserrat", Sans-serif;
  color: #7c7c7c;
  font-size: 13px;
}
#container-2 i {
  color: red;
  font-size: 50px;
}
#container-3.container-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  background-color: #f4f4f4;
  padding: 40px 20px;
  text-align: center;
}

.info-box {
  background-color: #f4f4f4;
  max-width: 500px;
  flex: 1 1 300px;
  padding: 20px;
  box-sizing: border-box;
}

.icono {
  font-size: 46px;
  color: red;
  margin-bottom: 15px;
}

.titulo {
  font-size: 16px;
  font-weight: bold;
  color: red;
  margin-bottom: 10px;
}

.descripcion {
  font-size: 12px;
  color: #7c7c7c;
  line-height: 1.6;
}

#invest {
  color: red;
  font-family: "Montserrat", Sans-serif;
  width: 80%;
  justify-self: center;
  font-size: 31px;
  font-weight: 600;
  text-align: center;
}
#separador {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(86, 86, 86);
  gap: 8px;
}
#separador i {
  font-size: 20px;
}
#separador hr {
  width: 250px;
}
#video-section {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 30px;
}
video {
  cursor: pointer;
  width: 50%;
}
/*-----------------Seccion de imagenes n1----------------------------------------*/
#example-img-container {
  justify-self: center;
  width: 80%;
  height: auto;
  /*     border: 1px solid brown;
 */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.example-img {
  width: 315px;
  height: 165px;
  border-radius: 10px;
}
.example-img:hover {
  filter: brightness(0.6);
  transition: all ease 0.4s;
  cursor: pointer;
}
/*-------------Seccion de beneficios -------------------------------------------*/
#benefits-container {
  width: 100%;
  height: auto;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: rgb(229, 228, 228);
  padding: 30px;
  font-family: "Montserrat", Sans-serif;
}
#benefits-container h2 {
  font-weight: bold;
  font-size: 32px;
  color: rgb(67, 67, 67);
}
#benefits-container h3 {
  color: red;
  font-size: 16px;
  font-weight: bold;
}
#benefits-container ul {
  /*     border: 1px solid red;
 */
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: start;
  list-style-type: none;
  gap: 7px;
}
#benefits-container ul li {
  font-size: 13px;
  text-align: start;
  color: rgb(97, 97, 97);
}
#benefits-container i {
  color: red;
}
hr {
  width: 80%;
  margin-bottom: 20px;
  margin-top: 20px;
  justify-self: center;
  border: none;
  height: 1px;
  background-color: rgb(53, 53, 53);
}
/*---Seccion de Imagenes n2------------------------------------------------------*/
#img-section-2-container {
  justify-self: center;
  width: 80%;
  height: auto; /* 
    border: 2px solid red; */
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.example-img-section-2 {
  width: 260px;
  border-radius: 10px;
}
.example-img-section-2:hover {
  filter: brightness(0.6);
  transition: all ease 0.4s;
  cursor: pointer;
}
/*--------Seccion proveedores----------------------------------------------------*/

#proveedores-container {
  width: 100%;
  height: auto;
}
.certificados-container {
  background-color: rgb(235, 235, 235);
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", Sans-serif;
}
.certificados-container p {
  width: 50%;
  font-weight: bold;
  font-size: 28px;
  color: rgb(89, 89, 89);
}
/*--------Seccion Nuestros productos----------------------------------------------------*/

#productos {
  width: 100%;
  height: auto;
  /*     border: 2px solid red;
 */
}
#info-producto-section {
  width: 100%;
  flex-wrap: wrap;
  margin-top: 50px;
  height: auto;
  display: flex;
  justify-content: center;
  gap: 30px;
}
#img-info-container {
  width: 500px;
  height: 500px;
  /*   border: 2px solid black;
 */
  position: relative;
}
#img-info-container img {
  width: 100%;
}
@media (max-width: 1024px) {
  #img-info-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
  }
  #img-info-container img {
    width: 90%;
  }
  .card-text-container {
    justify-content: center;
    margin-bottom: 50px;
    margin-top: 30px;
  }
}
.mira-nuestro-video {
  font-weight: bold;
  font-size: 20px;
}
.yt-info-link {
  text-decoration: none;
  color: red;
}
.yt-info-link:hover {
  text-decoration: underline;
}
#plan-app-standard-container {
  width: 280px;
  height: 130px;
  position: absolute;
  user-select: none;
  box-shadow: 10px 14px 39px -16px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 10px 14px 39px -16px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 14px 39px -16px rgba(0, 0, 0, 0.75);
  box-shadow: 1p;
  display: flex;
  border-radius: 2px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat", Sans-serif;
  bottom: 0px;
  right: 0px;
  background-color: rgb(255, 255, 255);
  border: 2px solid rgb(79, 79, 79);
}
#plan-title {
  color: rgb(53, 53, 53);
  font-size: 25px;
  font-weight: bolder;
}
#abono-mensual {
  padding: 3px;
  font-size: 20px;
  border-radius: 2px;
}
#mes-gratis {
  color: black;
  font-weight: 900;
  font-size: 24px;
  color: white;
  background-color: red;
  padding: 5px;
}
#gratis {
  color: white;
}
.info-title {
  font-size: 30px !important;
}
.info-description {
  font-size: 15px !important;
}
#info-product {
  width: 50%;
  background-color: grey;
}
.green-title {
  color: green !important;
}
.color-blue {
  color: white;
  font-weight: bolder;
  font-size: 25px;
  background-color: rgb(51, 83, 112) !important;
  padding: 10px;
}
.blue-title {
  color: rgb(51, 83, 112) !important;
}
#precio-contado {
  color: white;
  font-weight: bolder;
  font-size: 25px;
  background-color: green;
  padding: 10px;
}
#cartel-rojo {
  width: 100%;
  height: 100px;
  background-color: rgb(201, 2, 2);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  font-family: "Montserrat", Sans-serif;
  gap: 8px;
}
#nuestros-productos {
  font-size: 30px;
  font-weight: bold;
}
#sistema-adaptable {
  font-size: 22px;
  font-weight: bold;
}
#productos-container {
  margin-top: 30px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.card-product-container {
  width: 100%;
  height: 350px;
  /*     border: 1px solid green;
 */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.card-img {
  height: 100%;
  width: 350px;
  border-radius: 15px;
}
.card-text-container {
  width: 40%;
  height: 100%;
  /*     border: 1px solid red;
 */
  font-family: "Montserrat", Sans-serif;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-title {
  color: blue;
  text-align: start;
  font-weight: bold;
  font-size: 16px;
}
.card-text-description {
  text-align: start;
  font-size: 10px;
  color: grey;
}
.footer-card {
  text-align: start;
  font-size: 10px;
  font-weight: bold;
}
.color-red {
  color: red;
}
.color-green {
  color: green;
}
.color-light-blue {
  color: rgb(5, 173, 230);
}
.grey-background {
  background-color: rgb(236, 236, 236);
}
/*---------Seccion aclaraciones------------------------------------------------*/

#aclaraciones-container {
  font-family: "Montserrat", Sans-serif;
  color: grey;
  width: 100%;
  height: auto;
  margin-top: 30px;
  margin-bottom: 30px;
  background-color: rgb(237, 237, 237);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#aclaraciones-container p {
  text-align: start;
}
#aclaraciones-titulo {
  font-size: 30px;
  font-weight: bolder;
  color: rgb(53, 53, 53);
}
#no-vendemos {
  color: rgb(53, 53, 53);
  font-weight: bolder;
  font-size: 16x;
}
#aclaraciones-text-container {
  margin-top: 10px;
  height: 100%;
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/*---------Seccion videos demostracion-----------------------------------------------*/
#demo-videos-container img {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#demo-videos-container {
  position: relative;
  padding: 30px;
  width: 100%;
  height: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  /*     background-color: rgb(220, 47, 47);
 */
  font-family: "Montserrat", Sans-serif;
  color: white;
  font-weight: bold;
  font-size: 20px;
}
#demo-videos-container iframe {
  z-index: 2;
  width: 70%;
  height: 550px;
  border-radius: 10px;
}
/*---Seccion clientes satisfechos-------------------------------------------------------------*/

#clientes-satisfechos-container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
  margin-top: 50px;
  font-family: "Montserrat", Sans-serif;
  font-size: 20px;
  color: red;
  font-weight: bolder;
}
#clientes-satisfechos-videos-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
}
#clientes-satisfechos-container iframe {
  width: 19%;
  height: 100%;
  border-radius: 10px;
}
/*---------Seccion preguntas frecuentes------------------------------------------------*/
#preguntas {
  width: 100%;
  /*     border: 1px solid red;
 */
  background-color: rgb(236, 236, 236);
  display: flex;
  flex-direction: column;
}
#preguntas-frecuentes-title {
  background-color: rgb(228, 228, 228);
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(55, 55, 55);
  font-family: "Montserrat", Sans-serif;
  font-size: 30px;
  font-weight: bold;
}
#pregunta-container {
  width: 100%;
  color: red;
  display: flex;
  gap: 10px;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 20px;
  cursor: pointer;
}
#pregunta {
  align-self: center;
  font-family: "Montserrat", Sans-serif;
  width: 50%;
  color: grey;
  border-bottom: 1px solid grey;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: start;
  border-bottom: 1px solid rgb(123, 122, 122);
}
.contenido {
  max-height: 0; /* empieza cerrado */
  overflow: hidden; /* oculta contenido fuera de max-height */
  transition: max-height 1s ease;
  background: #f0f0f0;
  padding: 0 20px; /* padding horizontal solo para mantener */
}
.contenido.abierto {
  max-height: 300px; /* suficiente para mostrar el contenido */
  padding: 20px;
}
/*---------Seccion estamos en las siguientes provincias---------------------------*/
#estamos-en-section-container {
  width: 100%;
  font-family: "Montserrat", Sans-serif;
  display: flex;
  flex-direction: column;
}
#estamos-en-title {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(217, 217, 217);
  font-size: 28px;
  font-weight: bolder;
  color: rgb(38, 38, 38);
}
#lista-provincias-container {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 50px;
}
#lista-provincias-container ul {
  list-style-type: none;
  text-align: start;
  font-family: "Montserrat", Sans-serif;
  color: rgb(83, 83, 83);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#lista-provincias-container i {
  color: red;
  margin-right: 10px;
  font-size: 23px;
}
/*---------Seccion de contacto------------------------------------------------*/
#contacto {
  width: 100%;
  height: auto;
  font-family: "Montserrat", Sans-serif;
  margin-bottom: 30px;
}
#contact-section-title {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(217, 217, 217);
  font-size: 28px;
  font-weight: bolder;
  color: rgb(38, 38, 38);
}
#formulario-datos-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
form {
  color: #969696;
  width: 500px;
  height: auto;
  text-align: start;
}
form p {
  font-family: "Montserrat", Sans-serif;
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 30px;
  padding-top: 30px;
}
form label {
  font-family: "Montserrat", Sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: -0.2px;
  word-spacing: 1px;
  display: block;
  margin-bottom: 3px;
}
form input[type="text"],
form input[type="email"] {
  width: 90%;
  height: 40px;
  padding-left: 15px;
  font-family: "Montserrat", Sans-serif;
}
form textarea {
  width: 90%;
  height: 90px;
  padding-left: 15px;
  font-family: "Montserrat", Sans-serif;
}
form button {
  width: 100px;
  height: 35px;
  border: none;
  background-color: red;
  color: white;
  border-radius: 3px;
  font-size: 12px;
  cursor: pointer;
}
#datos-container {
  width: 400px;
  height: 510px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: grey;
}
#datos-container i {
  color: red;
}
#datos-container img {
  width: 40%;
}
.title {
  color: rgb(92, 92, 92);
  font-size: 30px;
  font-weight: bolder;
}
/*---------Footer-------------------------------------------------------------------------*/
footer {
  background-color: black;
  height: 35px;
  width: 100%;
  position: absolute;
  bottom: 0px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
}

.faq {
  border-bottom: 1px solid #ccc;
  width: 80%;
  margin: 0 auto;
  cursor: pointer;
  font-family: "Montserrat", Sans-serif;
}

.faq-header {
  display: flex;
  align-items: center;
  padding: 10px 0;
  color: red;
  font-weight: bold;
  font-size: 16px;
}

.faq .flecha {
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.faq.abierto .flecha {
  transform: rotate(90deg);
}

.faq .contenido {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  background-color: #f9f9f9;
  font-size: 14px;
  color: #333;
  padding: 0 20px;
}

.faq.abierto .contenido {
  max-height: 300px;
  padding: 15px 20px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 20px black;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
}

.close:hover {
  color: #bbb;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 36px;
  transition: 0.3s;
  user-select: none;
  z-index: 2001;
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

.prev:hover,
.next:hover {
  color: #ccc;
}

#image-counter {
  color: white;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  margin-top: 10px;
  font-size: 16px;
}

/* Modal con transición suave */
.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 20px black;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.modal-content.visible {
  opacity: 1;
}

/* Animaciones por scroll */
.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Opcional: diferentes estilos */
.fade-in {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.fade-in.visible {
  opacity: 1;
}

.slide-up {
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease;
}

.slide-up.visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1024px) {
  .modal-bienvenida img {
    width: 70%;
  }
  nav {
    flex-direction: column;
    min-height: auto;
    padding: 10px;
  }
  nav img {
    position: absolute;
    left: 0px;
    margin-left: 30px;
  }
  #social-container a {
    display: none;
  }
  #icono-hamburguesa {
    font-size: 30px;
    position: absolute;
    right: 30px;
    display: block;
    z-index: 100000;
  }
  nav ul {
    display: none;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
    background-color: white;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
  }

  /* Mostrar el menú si tiene esta clase */
  nav ul.activo {
    display: flex;
  }

  #social-container {
    width: 100%;
    justify-content: center;
  }

  #container-1 {
    flex-direction: column;
  }

  #live-container,
  #daily-results-container {
    width: 100%;
  }

  #container-2 p {
    width: 80%;
  }

  #container-3 {
    flex-direction: column;
    height: auto;
    gap: 30px;
  }

  #envio-de-resultados,
  #pronosticos {
    width: 100%;
    height: auto;
  }

  .card-product-container {
    flex-direction: column;
    height: auto;
  }

  .card-img {
    width: 90%;
    height: auto;
  }

  .card-text-container {
    width: 90%;
  }

  #clientes-satisfechos-videos-container {
    flex-wrap: wrap;
    gap: 20px;
  }

  #clientes-satisfechos-videos-container iframe {
    width: 45%;
    height: 200px;
  }
  #lista-provincias-container img {
    display: none;
  }

  #img-section-2-container,
  #example-img-container {
    justify-content: center;
  }

  .example-img,
  .example-img-section-2 {
    width: 100%;
    height: auto;
  }

  #datos-container {
    width: 90%;
  }

  #formulario-datos-container {
    flex-direction: column;
  }

  form,
  #datos-container {
    width: 90%;
  }

  #separador hr {
    width: 30%;
  }

  #demo-videos-container iframe {
    width: 100%;
    height: 300px;
  }

  #pregunta {
    width: 90%;
  }

  #lista-provincias-container {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  #lista-provincias-container ul {
    width: 100%;
    align-items: start;
  }

  #lista-provincias-container img {
    width: 80%;
  }

  .certificados-container p {
    width: 90%;
    font-size: 20px;
    text-align: center;
  }

  #benefits-container ul {
    width: 90%;
  }

  #contact-section-container {
    height: auto;
  }
}

@media (max-width: 600px) {
  #logo-navbar {
    width: 120px;
    height: auto;
  }

  nav ul li {
    font-size: 14px;
  }

  #live-container h2,
  #daily-results-container h2,
  #container-2 h2 {
    font-size: 22px;
  }

  #invest {
    font-size: 20px;
  }
  video {
    width: 100%;
  }

  #benefits-container h2 {
    font-size: 24px;
  }

  #benefits-container h3 {
    font-size: 14px;
  }

  #cartel-rojo p {
    font-size: 18px;
    text-align: center;
  }

  #seccion-nuestros-productos-container {
    padding: 10px;
  }

  #productos-container {
    gap: 30px;
  }

  #clientes-satisfechos-container iframe {
    width: 90%;
  }
  #proveedores-container img {
    width: 80%;
  }

  #estamos-en-title {
    font-size: 20px;
    text-align: center;
  }

  #contact-section-title {
    font-size: 22px;
    text-align: center;
  }
}
.modal-bienvenida {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.738);
  position: absolute;
  top: 0px;
  display: flex;
  z-index: 10000;
  justify-content: center;
  align-items: start;
}
.display-none {
  display: none;
}
.modal-bienvenida img {
  position: sticky;
  top: 50px;
  width: 40%;
  border-radius: 10px;
}

.banner-btn {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  background: linear-gradient(145deg, #e60000, #ff0000);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  border: 2px solid black; /* Borde negro */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: pulseMove 1.5s ease-in-out infinite; /* Animación constante */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@keyframes pulseMove {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

#tablero-img {
  transition: transform 0.1s ease-out;
  transform-style: preserve-3d;
  will-change: transform;
}

#custom-alert {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  color: #333;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  width: 80%;
  max-width: 350px;
  display: none;
  animation: fadeInScale 0.3s ease;
}

#custom-alert.show {
  display: block;
}

#custom-alert button {
  margin-top: 15px;
  background-color: red;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
