html {
  height: 100%;
}
body {
  height: 100%;
  background: linear-gradient(to right, #F6DDB7, #F3CFBA);
}

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

.navbar-icon img{
  color: #fff; /* Color del ícono */
  width: 40px;
  margin-top: 10px;  
  margin-right: 40px;
  text-align: center;
  align-items: center;
  justify-content: center;
}

/* Botón para estuche */ 
/* Contenedor del botón flotante */
.floating-button {
  text-decoration: none;
  width: 200px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0; /* Ajusta el padding si es necesario */
  background-color: #046CB1; /* Fondo transparente para que solo se vea la imagen */
  border: none; /* Sin borde para el botón */
  border-radius: 50px; /* Sin redondeo del botón */
  box-shadow: none; /* Sin sombra del botón */
  z-index: 9999; /* Asegúrate de que esté por encima de todo el contenido */
  overflow: visible; /* Permite que la imagen se extienda fuera del contenedor */
}
/* Contenedor para la imagen y el texto */
.floating-button .button-content {
  display: flex;
  align-items: center;
  height: 70px;
}

/* Estilo para la imagen dentro del botón */
.floating-button img {
  width: 100px; /* Ajusta el tamaño según sea necesario */
  height: 100px; /* Ajusta el tamaño según sea necesario */
  margin-right: 20px; /* Espacio entre la imagen y el texto */
  animation: bounce 3s infinite; /* Animación de rebote */
}

/* Estilo para el texto del botón */
.floating-button span {
  padding-right: 50px;
  font-weight: 500;
  text-align: center;
  font-size: 20px; /* Ajusta el tamaño de la fuente según sea necesario */
  color: #fff; /* Color del texto */
  white-space: nowrap; /* Evita que el texto se rompa en varias líneas */
  line-height: 20px;
}
.floating-button:hover {
  text-decoration: none;
  background-color: #035286; /* Cambia el color cuando pasa el cursor */
}

.button-icon {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}


/* FIN Botón para estuche */ 


/*banner animado */
/* Estilo general del banner */
.banner-container {
  position: relative;
  width: 100%;
  height: 500px; /* Ajusta según sea necesario */
  overflow: hidden;
}

/* Fondo que siempre está visible */
.background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0,));
  object-fit: cover;
}

/* Imágenes superpuestas */
.overlay-img {
  position: absolute;
  transition: all 0.5s ease;
}

.img1 {
  bottom: 0; /* Siempre pegada a la base */
  left: 50%;
  transform: translateX(-50%); /* Centra horizontalmente */
  width: 20%; /* Tamaño inicial para dispositivos pequeños */
}

/* Media Query para móviles pequeños (hasta 600px) */
@media only screen and (max-width: 600px) {
  .navbar-icon img{
    color: #fff; /* Color del ícono */
    width: 40px;
    margin-left: 40%;
    text-align: center;
    align-items: center;
  }
  .model-container {
    margin-top: 0;
    width: 100%;  /* Aumenta el ancho del contenedor al 100% del elemento padre */
    height: 300px; /* Define una altura específica para el contenedor */
  }
  
  model-viewer {
    margin-top: 0;
    width: 100%; /* Asegura que el model-viewer ocupe todo el contenedor */
    height: 120%; /* Mantiene el mismo tamaño en ambos ejes */
  }
  .row{
    display: flex;
    align-items: stretch;
    }
   .tratamiento img{
    height: auto; /* Hace que la imagen tome el 100% de la altura del contenedor */
    width: 100%;  /* Mantiene la proporción de la imagen */
    object-fit: cover; /* Asegura que la imagen se ajuste correctamente */
   } 
  .banner{
    text-align: center;
  }
  .banner .logoverde{
    margin-top: 25%;
    align-items: center;
    z-index: 1;
    position: relative;
    width: 50%;
    height: auto;
  }
  .img1 {
    left: 70%;
    width: 80%; /* Ajusta el tamaño de la imagen en dispositivos pequeños */
    top: 30%;
  }

  .img3 {
      top: 60%;
      left: 30%;
      width: 50%;
      transform: translate(-50%, -50%);
  }
  .img4 {
    display: none;
      top: 70%;
      left: 20%;
      width: 50%;
      transform: translate(-50%, -50%);
  }

  #privacidad .privacidad h3{
    font-size: x-small!important;
  }
}

/* Media Query para móviles grandes y tablets en orientación vertical (601px a 900px) */
@media only screen and (min-width: 601px) and (max-width: 900px) {
  .navbar-icon img{
    color: #fff; /* Color del ícono */
    width: 40px;
    margin-left: 40%;
    text-align: center;
    align-items: center;
  }

  .model-container {
    margin-top: 0;
    width: 100%;  /* Aumenta el ancho del contenedor al 100% del elemento padre */
    height: 300px; /* Define una altura específica para el contenedor */
  }
  
  model-viewer {
    margin-top: 0;
    width: 100%; /* Asegura que el model-viewer ocupe todo el contenedor */
    height: 120%; /* Mantiene el mismo tamaño en ambos ejes */
  }
  .row{
    display: flex;
    align-items: stretch;
    }
   .tratamiento img{
    height: auto; /* Hace que la imagen tome el 100% de la altura del contenedor */
    width: 100%;  /* Mantiene la proporción de la imagen */
    object-fit: cover; /* Asegura que la imagen se ajuste correctamente */
   } 
  .banner{
    text-align: left;
    padding-left: 5%;
  }
  .banner .logoverde{
    left: 25%;
    margin-top: 20%;
    align-items: center;
    z-index: 1;
    position: relative;
    width: 40%;
    height: auto;

  }
  .img1 {
    left: 80%;
    width: 50%; /* Ajusta el tamaño de la imagen para tablets en vertical */
  }

  .img3 {
      padding-left: 5%;
      top: 40%;
      left: 0%;
      width: 40%;
  }
  .img4 {
      top: 80%;
      left: 30%;
      width: 40%;
  }
  #privacidad h3{
    font-size: x-small!important;
  }
}

/* Media Query para tablets en orientación horizontal y pequeños monitores (901px a 1200px) */
@media only screen and (min-width: 901px) and (max-width: 1200px) {
  .navbar-icon img{
    color: #fff; /* Color del ícono */
    width: 40px;
    margin-left: 40%;
    text-align: center;
    align-items: center;
  }

  .navbar.logo img{
    width: 100px!important;
  }
  .model-container {
    margin-top: 0;
    width: 100%;  /* Aumenta el ancho del contenedor al 100% del elemento padre */
    height: 300px; /* Define una altura específica para el contenedor */
  }
  
  model-viewer {
    margin-top: 0;
    width: 100%; /* Asegura que el model-viewer ocupe todo el contenedor */
    height: 120%; /* Mantiene el mismo tamaño en ambos ejes */
  }
  .row{
    display: flex;
    align-items: stretch;
    }
   .tratamiento img{
    display: block;
    height: 100%; /* Hace que la imagen tome el 100% de la altura del contenedor */
    width: auto;  /* Mantiene la proporción de la imagen */
    object-fit: cover; /* Asegura que la imagen se ajuste correctamente */
   } 
  .banner{
    text-align: center;
    padding-left: 0%;
  }
  .banner .logoverde{
    margin-top: 15%;
    align-items: center;
    z-index: 1;
    position: relative;
    width: 30%;
    height: auto;
  }
  .img1 {
    left: 80%;
    width: 50%; /* Ajusta el tamaño de la imagen para monitores grandes */
  }

  .img3 {
      top:40%;
      left: 5%;
      width: 30%;
  }
  .img4 {
      top: 80%;
      left: 30%;
      width: 40%;
  }
}

/* Media Query para monitores grandes (a partir de 1201px) */
@media only screen and (min-width: 1201px) and (max-width: 1549px){
  .logo img{
    width: 150px;
  }
  #prospecto, #acidez, #habitos, #tratamiento, #video-producto{
    scroll-margin-top: 100px;
  }
  .prospecto .row .accordion{
    width: 50%;
    }
  .model-container {
    margin-top: 0;
    width: 100%;  /* Aumenta el ancho del contenedor al 100% del elemento padre */
    height: 400px; /* Define una altura específica para el contenedor */
  }
  
  model-viewer {
    margin-top: 0;
    width: 100%; /* Asegura que el model-viewer ocupe todo el contenedor */
    height: 150%; /* Mantiene el mismo tamaño en ambos ejes */
  }
  .img-thumbnail{
    margin: 0 0 25px 0;
  }
  .row{
    display: flex;
    align-items: stretch;
    }
   .tratamiento img{
    display: block;
    height: 100%; /* Hace que la imagen tome el 100% de la altura del contenedor */
    width: auto;  /* Mantiene la proporción de la imagen */
    object-fit: cover; /* Asegura que la imagen se ajuste correctamente */
   } 
   
   #habitos .img-fluid{
    display: block;
    height: 100%; /* Hace que la imagen tome el 100% de la altura del contenedor */
    width: auto;  /* Mantiene la proporción de la imagen */
    object-fit: cover;
   }
  .banner{
    text-align: center;
  }
  .banner .logoverde{
    margin-top: 10%;
    align-items: center;
    z-index: 1;
    position: relative;
    width: 25%;
    height: auto;

  }
  .img1 {
    left: 85%;
    width: 30%; /* Ajusta el tamaño de la imagen para monitores grandes */
  }

  .img3 {
      padding-left: 3%;
      top: 25%;
      left: 0%;
      width: 35%;
  }
  .img4 {
      top: 70%;
      left: 38%;
      width: 30%;
  }
}

/* Media Query para monitores enormes (a partir de 1201px) */

@media only screen and (min-width: 1550px) {
  .logo img{
    width: 150px;
  }
  #prospecto, #acidez, #habitos, #tratamiento{
    scroll-margin-top: 200px;
  }
  .prospecto .row .accordion{
    width: 50%;
    }
  .model-container {
    margin-top: 0;
    width: 100%;  /* Aumenta el ancho del contenedor al 100% del elemento padre */
    height: 400px; /* Define una altura específica para el contenedor */
  }
  
  model-viewer {
    margin-top: 0;
    width: 100%; /* Asegura que el model-viewer ocupe todo el contenedor */
    height: 150%; /* Mantiene el mismo tamaño en ambos ejes */
  }
  .img-thumbnail{
    margin: 0 0 25px 0;
  }
  .row{
    display: flex;
    align-items: stretch;
    }
   .tratamiento img{
    display: block;
    height: 100%; /* Hace que la imagen tome el 100% de la altura del contenedor */
    width: auto;  /* Mantiene la proporción de la imagen */
    object-fit: cover; /* Asegura que la imagen se ajuste correctamente */
   } 
   
   #habitos .img-fluid{
    display: block;
    height: 100%; /* Hace que la imagen tome el 100% de la altura del contenedor */
    width: auto;  /* Mantiene la proporción de la imagen */
    object-fit: cover;
   }
  .banner{
    text-align: center;
  }
  .banner .logoverde{
    margin-top: 7%;
    align-items: center;
    z-index: 1;
    position: relative;
    width: 23%;
    height: auto;

  }
  .img1 {
    left: 85%;
    width: 20%; /* Ajusta el tamaño de la imagen para monitores grandes */
  }


  .img3 {
    padding-left: 3%;
      top: 25%;
      left: 5%;
      width: 25%;
  }
  .img4 {
      top: 70%;
      left: 37%;
      width: 30%;
  }
}
/*fin banner animado*/

.desktop{
  display: block;
}

.mobile{
  display: none;
}

.claim{
   filter: drop-shadow(3px 5px 5px rgb(0 0 0 / 0.8));
}

.imagenespresentaciones img{
  width: 300px;
}

/** BANNER SUPERIOR **/

.logoverde{
  position: absolute;
  margin-top: 5%;
  width: 100%;
  height: 200px;
  z-index: 999;
}

.infomedio{
  position: absolute;
  background: url(../imgs/bannerup.svg) no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  padding-top:100px;
  padding-bottom:500px;
  transition-duration: 1s;
  margin-bottom: 5%;
}
/** FIN BANNER SUPERIOR **/

/** COLOR MENU TOP **/
header{
  background: #046CB1;
}
.navbar .container-fluid{

  display: flex;
  background-color: #046CB1;
  position: fixed; 
  top: 0;
  z-index: 99999;
  height: 10%;
}

.navbar-light .navbar-nav .nav-link {

  color: #ffff !important;
  text-align: center;
  line-height: 25px;
  font-size: medium;
  line-height: 20px;
}
.navbar-light .navbar-nav .nav-link:hover{
  border-bottom: 1px solid ##F2B705!important; 
  color: #F2B705!important;
}

#menu{
  
  margin: 20px;
  background-color: #046CB1;
}

h1{
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #046CB1;
  margin: 2% 2%; 
  padding: 2% 2%;
}
h2{
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-style: normal;
}
h3{
  font-family: "Ubuntu", sans-serif;;
}
p{
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-style: normal;
}
/** FIN COLOR MENU TOP **/

.logo{
  padding-left: 50px;
}

.logo img{
  width: 120px;
}

.infomedio img{
  width: 35%;
  transition-duration: 1s;
}

.inlineblock1{
  display: inline-block;
  width: 32%;
  margin: 0 5% 0 5%; 
}

.inlineblock2{
  display: inline-block;
  width: 70%;
  margin: 0 5% 0 5%; 
}

.bloque{
  margin: 200px auto 100px auto;
  width: 60%;
  transition-duration: 1s;
  text-align: center;
}



/*PROSPECTO*/
#prospecto{
  display: block;
  justify-content: center;
  align-items: center;
  min-height: 30vh;
  margin-top: 15%;
  padding: 0 10% 0 10%;
}


.prospecto .row{
  margin-top: 0;
  padding-top: 0;

}
.prospecto h2 {
  text-align: center;
  font-weight: 500;
  font-size: larger;
}
.accordion{
  padding: 0;
  margin: 0;
  width: 50%;
  display: inline-block;
}

.accordion .contentBx{
  position: relative;
  margin: 10px 20px;
}

.accordion .contentBx .label{
  font-family: "Ubuntu", sans-serif;
  font-weight: 200;
  font-style: normal; 
  position: relative;
  padding: 10px 50px 10px 10px; 
  background: #046CB1;
  color: #ffff;
  cursor: pointer;
}

.accordion .contentBx.active .label{
  font-weight: 200;
  position: relative;
  padding: 10px 50px 10px 10px; 
  background: #d4d4d4;
  color: #046CB1;
  cursor: pointer;
 }

/* Estilo para el bullet cuando el acordeón está cerrado */
.accordion .contentBx .label::before {
  content: url(../imgs/bullet.svg); /* Imagen del bullet cerrado */
  position: absolute;
  top: 50%;
  right: 20px; /* Ajusta según sea necesario */
  transform: translateY(-50%);
}

/* Estilo para el bullet cuando el acordeón está abierto */
.accordion .contentBx.active .label::before {
  content: url(../imgs/bullet-up.svg); /* Imagen del bullet cuando está abierto */
  position: absolute;
  width: 20px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

 .accordion .contentBx .content{
  position: relative;
  height: 0;
  overflow: hidden;
  /*transition: 0.5s;*/
  overflow-y: auto;
 }
 
 .accordion .contentBx.active .content{
  height: auto;
  padding: 10px;
 }
/* FIN PROSPECTO*/

/*ACIDEZ Y REFLUJO*/
.acidez{
  margin-top: 5%;
}
li{
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: normal;
}
#fija{
  height: 400px;
  width: 100%;
  table-layout: fixed;
}

#fija h2{
  color: white;
  text-align: center;
}
.color h2{
  font-size: 2rcap!important;
}
.color1{
  background-color: #DD3919;
  font-size: 0px;
  padding: 30px;
  -webkit-transition: width 0.9s ease 0.5s, ease-out 0.4s, background-color 0.4s ease 0.4s, font-size 0s;
  -moz-transition: width 0.9s ease 0.5s, ease-out 0.4s, background-color 0.4s ease 0.4s, font-size 0s;
  -o-transition: width 0.9s ease 0.5s, ease-out 0.4s, background-color 0.4s ease 0.4s, font-size 0s;
  transition: width 0.9s ease 0.5s, ease-out 0.4s, background-color 0.4s ease 0.4s, font-size 0s;
  

}
.color2{
  background-color: #ED4828;
  font-size: 0px;
  padding: 30px;
  -webkit-transition: width 0.9s ease 0.5s, ease-out 0.4s, background-color 0.4s ease 0.4s, font-size 0s;
  -moz-transition: width 0.9s ease 0.5s, ease-out 0.4s, background-color 0.4s ease 0.4s, font-size 0s;
  -o-transition: width 0.9s ease 0.5s, ease-out 0.4s, background-color 0.4s ease 0.4s, font-size 0s;
  transition: width 0.9s ease 0.5s, ease-out 0.4s, background-color 0.4s ease 0.4s, font-size 0s;

}
.color3{
  background-color: #F96345;
  font-size: 0px;
  padding: 30px;
  -webkit-transition: width 0.4s ease 0.5s, ease-out 0.4s, background-color 0.4s ease 0.4s, font-size 0s;
  -moz-transition: width 0.4s ease 0.5s, ease-out 0.4s, background-color 0.4s ease 0.4s, font-size 0s;
  -o-transition: width 0.4s ease 0.5s, ease-out 0.4s, background-color 0.4s ease 0.4s, font-size 0s;
  transition: width 0.4s ease 0.5s, ease-out 0.4s, background-color 0.4s ease 0.4s, font-size 0s;
}

.color:hover{
  width: 70%;
  font-size: 15px;
  color: #ffffff;
  transition: none;
}



/*FIN ACIDEZ Y REFLUJO*/


/*NUEVOS HABITOS*/
.titulo-carrusel h2{
  padding: 6% 20% 0 20%;
  font-size: 23px;
}


.img-fluid {

  padding-left: 0;
  margin-left: 0;
}

.carousel-inner {
  padding-top: 15%;
  height: auto; /* Deja que la altura se ajuste al contenido */
}

.carousel-item {
 
  min-height: 200px; /* Establece una altura mínima para evitar superposición */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0; /* Inicia con las slides invisibles */
  transition: opacity 0.2s ease-in-out; /* Transición suave de opacidad */
}
.carousel-item.active {
  opacity: 1; /* Solo la slide activa es visible */
  position: relative; /* Posiciona correctamente la slide activa */
}
.carousel-caption {
  width: 71%; /* Asegura que el contenedor de texto ocupe todo el ancho disponible */
}
.carousel-caption p {
  font-size: 1.2rem;
  color: #333; /* Cambia el color del texto si es necesario */
  margin: 0 auto;
  max-width: 100%; /* Limita el ancho del texto */
}

.carousel-indicators {
  bottom: -50px; /* Ajusta la posición de los indicadores */
  display: flex;
  justify-content: center;
  gap: 10px; /* Espacio entre las imágenes */
  outline: none;
  list-style: none;
}

.carousel-indicators button {
  background-color: transparent;
  border: none;
  padding: 0;
  outline: none;
}

.carousel-indicators .img-thumbnail {
  background-color: transparent;
  width: 25px; /* Ajusta el tamaño de la miniatura */
  height: auto;
  opacity: 0.3; /* Para dar un efecto de inactivo */
  transition: opacity 0.3s ease;

}

.carousel-indicators .active .img-thumbnail {
  border-style: none;
  background-color: transparent;
  opacity: 1; /* Imagen activa completamente visible */
  outline: none;

}
.carousel-indicators button:focus {
  outline: none; /* Asegúrate de que el borde no aparezca cuando se enfoque */
}

/*FIN NUEVOS HABITOS*/

/*TRATAMIENTO*/
#tratamiento h2{
  font-size: 25px;
  font-weight: 700; 
  color: white;
}

#tratamiento p{
  font-size: 25px;
  font-weight: 400; 
  color: white;
}

#tratamiento ul{
  font-size: 25px;
  color: white;
}

/*FIN TRATAMIENTO*/

.subtitulo{
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}
.subtitulo span{
  padding: 10px 40px;
  color: #7a7a7a;
  border-radius: 40px;
  font-size: 19px;
  font-family: 'Montserrat', sans-serif;
  background-image: linear-gradient(to right, #ffd192 0%, #fdd868  51%, #ffcf8c  100%);
  border-style: none;
}


.bloque2{
  width: 60%;
  margin:0 auto 0 auto;
  text-align: justify;
  transition-duration: 1s;
  font-size: large;
}

.pantusEstuche{
  padding: 0;
}

.pantusEstuche img{
  width: 80%;
  margin-top: 0;
  margin-bottom: 0;
}

.bloque3{
  background-color: white;
  margin:200px auto 100px auto;
  padding: 50px;
  width: 100%;
  transition-duration: 1s;
  background: url(../imgs/fondocomp.jpg) no-repeat;
  background-position: center -50px;
  background-attachment: scroll;
  background-size: cover;
}

.bloque4{
  background-color: white;
  margin:200px auto 200px auto;
  padding: 50px;
  width: 100%;
  transition-duration: 1s;
}

.bloque4 img{
  display: inline-block;
  width: 350px;

}

.bloqueinterno{
  width: 100%;
  margin:50px auto 50px auto;
  transition-duration: 1s;
  text-align: center;
}

.bloqueinterno img{
  width: 80%;
}

.bloqueinterto2img img{
  width: 50%!important;
}

.bloqueinterno h2{
  background-color: #20254a;
  border-left: 10px solid #a3195b;
  color: white;
  padding: 10px 10px 10px 50px;
  width: 700px;
  text-align: left;
}

.izquierda{
  width: 80%;
  display: inline-block;
  vertical-align: middle;
}

.derecha{
  width: 49%;
  display: inline-block;
  text-align: center;
  vertical-align: top;
}

.referencia{
  margin: 30px auto;
  width: 800px;
  text-align: center;
  color: #b3b3b3;
}

.banda{
   background-color: white;
   border: 2px solid #046CB1;
   width: 60%;
   margin: 150px auto;
   color: #104c77;
   padding: 20px 50px 14px 50px;
}

.botoneslineas{
  width: 70%;
  margin: 0 auto;
}

.botoneslineas button{
  margin:10px;
  display: inline-block;
}

.botonera{
  padding: 40px 0 40px 0;
  background-color: #e5e5e5;
  margin:50px auto 0 auto;
}

.botonera button{
  margin:10px;
  display: inline-block;
}

.botonera a:link, a:visited, a:active{
  text-decoration: none;
}

*{
  font-weight: lighter;
}
html {
  scroll-behavior: smooth;
}
.banersup,#banersup{
  background-color: #004D39;
  width:100%;
  top:0;
  position:relative;
  text-align:center;
  transition: 1s;
}


.bg-light{
  background-color:white!important; 
}

.navbar-toggler {
    padding: 10px 16px!important;
}

.navbar-nav {
	display: -ms-flexbox;
  display: flex;
  flex-direction: row!important;
  -ms-flex-direction: column;
  flex-direction: column;
  list-style: none;
  flex-direction: row;
}

.navbar-nav li{
  font-size: 20px;
  margin: 0px 20px 0px 20px;

}

.navbar-nav a{
  font-size: 20px;

}


.navbar-light .navbar-nav .nav-link {
  margin: 0 10px 0 10px;
  border-bottom: 1px solid rgba(236, 225, 225, 0);
  transition-duration: 1s; 
 }

.galeriamarcas{
  margin: 5% 0 0 0;
  padding-bottom: 100px;
  width: 100%;
} 

.galeriamarcas img{
  height: auto;
  margin-left: 50px;
}

.galeriamarcas .row{
  width: 100%;
}
.galeriamarcas h1{
  font-size: 30px;
  color: #333;
}

 .footer{
  margin-top: 100px;
  padding: 100px 0px 100px 0px;
  text-align: center;
  font-size: 15px;
  background-color: grey;
  color:white!important;
}

#desktop{
  display: inline;
}

#mobile{
  display: none;
}

#mobile .navbar-collapse {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  z-index: 99999;
  top: 55px;
  margin-right: 40px;
  backdrop-filter: blur(10px);
  background-color: #046CB1; 
}

#mobile .navbar-nav {
  display: -ms-flexbox;
  display: flex;
  flex-direction: column!important;
  -ms-flex-direction: column!important;
  flex-direction: column!important;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  margin: 0 auto;
  flex-direction: row;
}

#mobile .navbar-toggler{
  margin-right: 40px;
}

#mobile .navbar-light {
  margin-right: 40px;
}

.navbar-collapse {
  padding: 20px;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 10px 15px -3px,
  rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  border-radius: 10px 0px 10px 10px;
}

.productos-ventalibre img{
  margin: 0;
  width: 100%;
  display: block;
  text-align: center;
  justify-content: center;
}

.productos-ventalibre :hover{
  transform: scale(1.25);
}

.image-row {
  flex-direction: row; /* Imágenes alineadas horizontalmente en dispositivos grandes */
}


.galeriamarcas .img-fluid {
width: 100%; /* Asegura que las imágenes sean responsivas */
height: auto; /* Mantiene la relación de aspecto */
}

.galeriamarcas .img-fluid:hover{
  transform: scale(1.2);
}
 
/** MOBILE **/

@media only screen and (max-width: 1200px){
    /** banner superior posicion **/

.infomedio{
  background-position: center -10px;
  background-size: cover;
  padding-top: auto;
  padding-bottom: auto;
  
}
  /** fin banner superior posicion **/

.infomedio img{
  width: 50%;
  position: absolute;
  top: 10%;
  left: 35%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(3px 5px 10px rgb(0 0 0 / 0.6));
}

h3{
  font-size: 25px;
}

h3 svg{
  width: 40px;
}

#desktop{
  display: none;
}


.fixed{
  width: 100%;
  height: 350px;
  z-index: 999;
}


#mobile{
  display: inline;
}

.bloque{
  padding:10px 0 50px 0;
  width: 90%;
  margin:0 auto;
}

.bloque3{
  background-color: white;
  padding: 20px;
  width: 100%;
  margin:-20px auto 0 auto;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
  rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.inlineblock1{
  display: inline-block;
  width: 60%;
  margin: 0 auto; 
}

.inlineblock2{
  display: inline-block;
  width: 85%;
  margin: 0 auto; 
}

.galeriamarcas{
  margin:0 auto;
  margin-top: 90px;
  width: 100%;
}

.botonera{
  padding: 40px 0 40px 0;
  background-color: #e5e5e5;
  margin:20px auto 0 auto;
}

.botonera button{
  vertical-align: middle;
  line-height: 1.5;
  border-radius: 25px;
  display:block;
  padding: 10px 40px 10px 40px;
}

.botonera svg{
  width: 30px;
}


.galeriamarcas img{
  width: 40px;
}


.bloque3 button{
  line-height: 1.5;
  border-radius: 25px;
  display:block;
  padding: 10px 40px 10px 40px;
}

.bloque3 svg{
  width: 30px;
}

.navbar>.container, .navbar>.container-fluid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}

/*.navbar-expand-lg>.container, .navbar-expand-lg>.container-fluid {
  padding-right: 0;
  padding-left: 0;
  position: fixed;
  z-index: 99999;
  top: 0;
  margin-top: 10px;
}*/

.navbar-light .navbar-toggler {
  color: rgb(255 255 255);
  border-color: #046CB1;
  background-color: #046CB1;
}


.bloque3 button{
  margin: 30px 0 30px 0;
}

.galeriamarcas{
  margin:0 auto;
  margin-top: 90px;
  width: 95%;
}

.footer{
  padding: 35px 0px 30px 0px;
  font-size: 15px;
}

.footer img{
  width: 140px;
}

/* AJUSTES MOBILE */

.banda{
  width: 95%;
  margin: 100px auto;
}

.bandatexto h3{
  font-size: 20px!important;
}

.bloqueinterno h2 {
    background-color: #20254a;
    border-left: 5px solid #046CB1;
    font-size: 20px;
    color: white;
    padding: 10px 10px 10px 20px;
    width: 100%;
    text-align: left;
}

.bloqueinterto2img img{
  width: 60%!important;
}

.izqyder {
    width: 85%!important;
    margin: 50px auto 50px auto;
}

.izquierda {
    width: 49%;
    display: inline;
    text-align: left;
    vertical-align: middle;
}

.derecha {
    width: 49%;
    display: inline;
    text-align: left;
    vertical-align: middle;
}

.referencia{
  width: 98%;
}

.bloqueinterno img{
  width: 100%;
}

.desktop{
  display: none;
}

.mobile{
  display: block;
}

.bloque4{
  padding: 0px;
}

.logocel img{
  width: 150px;
  margin: 0px 0px 0px 20px;
}

}


@media only screen and (max-width: 700px){
  

  /** banner superior posicion **/

h1{
  font-size: 30px!important; 

}


.bloque2{
    width: 100%;
    margin:0px auto auto;
    text-align: justify;
    transition-duration: 1s;
    font-size: large;
}

.infomedio{
  max-width: 100%;
  margin-top: 10%;
  background: url(../imgs/banner-mobile.webp) no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  z-index: -1;
  position: absolute;
}

.accordion{
  margin: 0;
  width: 100%;
}

.slider{
  list-style: none;
}
.menu{
  list-style: none;
}

.contenedor2{
  margin-bottom: 0;
  width: auto;
}
.contenedor2 h3{
  padding: 4%;
}

.contenedor2 p{
  padding: 4%;
}

.contenedor2 li{
  padding: 4%;
}
/* Acordeon Acidez */ 
.color{
  display: block;
}

.color h2{
  font-size: large!important;
}
.color:hover{
  width: auto;}



/*FIN Acordeon Acidez*/ 
  .habitos h3{
    font-size: medium!important;
  }
  
  
  .carousel-inner{
    margin-bottom: 3%;
  }
  
  .carousel.slide{
    padding-bottom: 5%;
  }
  
  .carousel-indicators{
    padding-bottom: 2%; 
  }
  
  .carousel-indicators button:hover{
    border-color: transparent;
  }
  .carousel-caption p {
    font-size: 1rem;
    color: #333; /* Cambia el color del texto si es necesario */
    margin: 0 auto;
    max-width: 100%; /* Limita el ancho del texto */
  }

.row{
  width: auto; 
}
.titulo-carrusel h2{
  font-size: 20px;
}

#tratamiento{
  margin-top: 10%;
  margin-right: 0;
}

#tratamiento .container-fluid {

}

#tratamiento .col-xs-12 h2{
  font-size: 20px!important;
  font-weight: 700; 
  color: white;
  padding: 5% 5% 0 5%;
}

#tratamiento p{
  font-size: 20px;
  font-weight: 400; 
  color: white;
  padding: 5% 5% 0 5%;
}

#tratamiento ul{
  font-size: 20px;
  color: white;
  padding: 5% 5% 0 10%;
}

.faq .card {
  margin: auto;
  margin-top: 20%;
  border-radius: 1cap;
}

.faq ul{
  margin-left: 0;
padding-left: 0;
}

.faq li{
  list-style: none;
}

.faq li img{
padding: 1%;
}
.galeriamarcas{

}
.galeriamarcas h1{
  font-size: large!important;
}
.galeriamarcas h1 img{
  margin-left: 0;
  width: 20px;
  height: auto;
}

.productos-ventalibre img{
  margin: 0%;
  width: 100%;
  display: flex;
  padding: 0%;
}

.productos-ventalibre :hover{
  transform: scale(1.25);
}



.image-row {
  display: flex;
  flex-direction: column; /* Imágenes apiladas verticalmente en dispositivos móviles */
}
a.d-block{
  padding-right: 50px;
  display: block; /* Asegura que el enlace abarque el contenedor de la imagen */
  text-align: center; /* Opcional: centra el contenido del enlace */
}

.container-fluid{
  justify-content: center;
}


}

.model-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 30px;
  color: #fff;
  opacity: 70%;
  border-radius: 50%;
  padding: 5px;
  z-index: 10;
}

.model-container {
  position: relative;
}