@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300;400;700&display=swap');
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 62.5%;
  font-size: 10px;
}
/* Navbar section */
.nav {
  width: 100%;
  height: 65px;
  position: fixed;
  line-height: 65px;
  text-align: center;
}
.nav div.logo {
  float: left;
  width: auto;
  height: auto;
  padding-left: 3rem;
}
.nav div.logo a {
  text-decoration: none;
  color: #a71828;
  font-size: 2.5rem;
}
.nav div.logo a:hover {
  color: #a71828;
}
.nav div.main_list {
  height: 65px;
  float: right;
}
.nav div.main_list ul {
  width: 100%;
  height: 65px;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav div.main_list ul li {
  width: auto;
  height: 65px;
  padding: 0;
  padding-right: 3rem;
}
.nav div.main_list ul li a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  line-height: 65px;
  font-size: 2.4rem;
}
.nav div.main_list ul li a:hover {
  color: #a71828;
}
.navTrigger {
  display: none;
}
.nav {
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.navTrigger {
  display: none;
}
.nav {
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
/* Media qurey section */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    margin: 0;
  }
}
@media screen and (max-width:768px) {
  .navTrigger {
    display: block;
  }

  .nav div.logo {
    margin-left: 15px;
  }

  .nav div.main_list {
    width: 100%;
    height: 0;
    overflow: hidden;
  }

  .nav div.show_list {
    height: auto;
    display: none;
  }

  .nav div.main_list ul {
    flex-direction: column;
    width: 100%;
    height: auto;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgb(0, 0, 0, 0.2);
    /*same background color of navbar*/
    background-position: center top;
  }

  .nav div.main_list ul li {
    width: 100%;
    text-align: right;
  }

  .nav div.main_list ul li a {
    text-align: center;
    width: 100%;
    font-size: 3rem;
    padding: 20px;
  }

  .nav div.media_button {
    display: block;
  }
}
/* Animation */
.navTrigger {
  cursor: pointer;
  width: 30px;
  height: 25px;
  margin: auto;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
}
.navTrigger i {
  background-color: rgb(255, 255, 255);
  border-radius: 2px;
  content: '';
  display: block;
  width: 100%;
  height: 4px;
}
.navTrigger i:nth-child(1) {
  -webkit-animation: outT 0.8s backwards;
  animation: outT 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.navTrigger i:nth-child(2) {
  margin: 5px 0;
  -webkit-animation: outM 0.8s backwards;
  animation: outM 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.navTrigger i:nth-child(3) {
  -webkit-animation: outBtm 0.8s backwards;
  animation: outBtm 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.navTrigger.active i:nth-child(1) {
  -webkit-animation: inT 0.8s forwards;
  animation: inT 0.8s forwards;
}
.navTrigger.active i:nth-child(2) {
  -webkit-animation: inM 0.8s forwards;
  animation: inM 0.8s forwards;
}
.navTrigger.active i:nth-child(3) {
  -webkit-animation: inBtm 0.8s forwards;
  animation: inBtm 0.8s forwards;
}
@-webkit-keyframes inM {
  50% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(45deg);
  }
}
@keyframes inM {
  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(45deg);
  }
}
@-webkit-keyframes outM {
  50% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(45deg);
  }
}
@keyframes outM {
  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(45deg);
  }
}
@-webkit-keyframes inT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }

  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
  }

  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
  }
}
@keyframes inT {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(9px) rotate(0deg);
  }

  100% {
    transform: translateY(9px) rotate(135deg);
  }
}
@-webkit-keyframes outT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }

  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
  }

  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
  }
}
@keyframes outT {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(9px) rotate(0deg);
  }

  100% {
    transform: translateY(9px) rotate(135deg);
  }
}
@-webkit-keyframes inBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }

  50% {
    -webkit-transform: translateY(-9px) rotate(0deg);
  }

  100% {
    -webkit-transform: translateY(-9px) rotate(135deg);
  }
}
@keyframes inBtm {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-9px) rotate(0deg);
  }

  100% {
    transform: translateY(-9px) rotate(135deg);
  }
}
@-webkit-keyframes outBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }

  50% {
    -webkit-transform: translateY(-9px) rotate(0deg);
  }

  100% {
    -webkit-transform: translateY(-9px) rotate(135deg);
  }
}
@keyframes outBtm {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-9px) rotate(0deg);
  }

  100% {
    transform: translateY(-9px) rotate(135deg);
  }
}
/*Imagen con texo centrado*/
/* Home section */
.home {
  width: 100%;
  height: 100vh;
  background-image: url(./Img/Fondos/walpaper1-1.png);
  background-position: center top;
  background-size: cover;
}
.custom-section {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
}
.custom-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 800px;
  height: 400px;
  text-align: center;
  background-color: transparent;
  border: none;
  color: #ffffff;
  border-radius: 50px;
}
.content-home {
  text-align: center;
}
.custom-box h1 {
  font-size: 50px;
  margin: 0;
}
.custom-box p {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 45px;
  margin: 0;
}
.custom-box .btn-secondary {
  background-color: rgb(0, 0, 0);
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 24px;
  border-radius: 50px;
  cursor: default;
}
.custom-box .btn-secondary:hover {
  background-color:#a71828;
}
.affix {
  padding: 0;
  background-color: rgb(0, 0, 0);
}
/*texto centrado 1*/
.part2{
  background-color: #a71828;
  color: white;
  width: 100%;
  height:auto;
}
.txtcen {
  padding: 40px ;
  /* Espaciado interno */
}
.txtcen p{
  font-size: 35px;
  /* Tamaño de fuente mediano */
  margin-bottom: 20px;
  /* Margen inferior */
}
.txtcen h1{
  font-size: 60px;
  margin-bottom: 10px;
  animation: text-shadow 1.5s ease-in-out infinite;
  font-weight: 900;
  line-height: 1;
}
@keyframes text-shadow {
  0% {
    text-shadow: none;
  }
  50% {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
  100% {
    text-shadow: none;
  }
}
/*Parte de fila de imagenes con boton abajo*/
.FilaNECG {
  margin-top: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.FilaNECG.activo {
  opacity: 1;
  transform: translateY(0);
}
.imagen-con-boton {
  text-align: center;
  margin-bottom: 30px;
}
.imagen-con-boton img{
  max-width: 100%;
  height: auto;
}
.botonF {
  background-color:#a71828;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 20px;
  cursor: pointer;
}
.botonF:hover{
 background-color: #000000;
}
.imagen-con-boton img {
  transition: transform 0.3s ease;
}
.imagen-con-boton img:hover {
  transform: scale(1.2);
}
/*Carrusel*/
.carousel {
  color: white;
}
.carousel h1 {
  font-size: 100px;
}
.carousel p {
  font-size: 35px;
}
.carousel img{
  width: 100%;
  height: auto;
  align-items: center;
  border-radius: 50px;
}
.owl-carousel img {
  max-width: 100%;
  height: auto;
}
.multipremiado {
  width: 100%;
  height: auto;
  background-image: url(./Img/Multipremiado/premios-4.png);
  background-position: center center;
  background-size: cover;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.multipremiado .texto-centrado {
  max-width: 80%; /* Ajusta el ancho del contenedor de texto según sea necesario */
}

.multipremiado .texto-centrado h1 {
  color: white;
  font-size: 200px;
  -webkit-text-stroke: 0px black; /* Agrega un borde negro alrededor del texto */
  text-stroke: 0px black; /* Agrega un borde negro alrededor del texto */
}

.multipremiado .texto-centrado p {
  color: white;
  font-size: 100px;
  -webkit-text-stroke: 0px black; /* Agrega un borde negro alrededor del texto */
  text-stroke: 0px black; /* Agrega un borde negro alrededor del texto */
}

/* Estilos para la sección de redes sociales */  
.txtcen {
    padding: 40px;
    /* Espaciado interno */
  } 
  .txtcen p {
    font-size: 35px !important;
    /* Tamaño de fuente mediano */
    margin-bottom: 20px !important;
    /* Margen inferior */
  }  
  .txtcen h1 {
    font-size: 60px;
    margin-bottom: 10px;
    animation: text-shadow 1.5s ease-in-out infinite;
    font-weight: 900;
    line-height: 1;
  }
  .redes {
    width: 100%;
    height: auto;
    background-image: url(./Img/Fondos/eao-en-los-medios.png);
    background-position: center top;
    background-size: cover;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    color: white;
  }
  .redes h1 {
    font-size: 60px;
    margin-bottom: 20px;
    /* Reducir el espacio inferior del título */
    text-align: center;
  }
  .rede {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centra horizontalmente */
    justify-content: center;
    /* Centra verticalmente */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }  
  .rede.activo {
    opacity: 1;
    transform: translateY(0);
  }
  .image-box {
    width: 150px;
    height: 150px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Oculta el contenido que se desborda */
    transition: transform 0.3s;
    margin: 10px;
    /* Añadir margen entre las imágenes */
    text-align: center;
    /* Centra el contenido horizontalmente */
    position: relative;
    /* Añade posición relativa para el enlace */
  }
  .image-box a {
    display: block;
    /* Hace que el enlace sea un elemento de bloque */
    width: 100%;
    /* Ocupa todo el ancho del image-box */
    height: 100%;
    /* Ocupa todo el alto del image-box */
  }
  .image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    /* Evita que la imagen se estire verticalmente */
    height: auto;
    /* Evita que la imagen se estire horizontalmente */
  }
  .image-box:hover {
    transform: scale(1.1);
  }
/* Estilos para la sección de distribuidores autorizados */
/* Estilos para la animación cuando aparece */  
.part3 {
    background-color: black;
    color: white;
  }
  .disauto {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .disauto.activo {
    opacity: 1;
    transform: translateY(0);
  }
  .disauto .titulo3p {
    font-size: 80px !important;
    color: #a71828 !important;
  }
  .disauto p {
    font-size: 35px;
  }
.disauto img {
  width: auto;
  max-width: 300px;
  transition: transform 0.3s ease;
}
.disauto img:hover {
  transform: scale(1.2);
}
/*Video*/
.secvid {
  background-color:#a71828;
  padding: 5px;
  border-radius: 100px;
}
.part3 h1 {
  font-size: 60px;
  margin-bottom: 30px;
}
.video {
  overflow: hidden;
  border-radius: 100PX;
}
/* Estilos para la sección de "¿Por qué somos los mejores?" */
.mejo{
  background-color: #F2F2F2;
  width: auto;
  height: auto;
}
.mejores h1 {
  color: #a71828;
  font-size: 45px;
  margin-bottom: 10px;
}
.mejores ul {
  list-style-type: disc;
  font-size: 20px;
 /* Ajusta el margen izquierdo según tus preferencias */
  text-align: justify;
}
.botonesvid {
  margin-top: 20px;
  margin-bottom: 20px;
  text-decoration: none
}
.botonesvid .btn-custom {
  background-color: #a71828;
  text-decoration: none;
  color: #ffffff;
  border: none;
  padding: 10px 60px;
  font-size: 28px;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-right: 20px; /* Aumenta la separación entre botones */
}
.botonesvid .btn-custom:hover {
  background-color: #000000; 
  color: #ffffff; 
}

/*Galeriaimagenes*/
.image-section {
  width: 100%;
  background-color: #f5f5f5;
  padding: 40px 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
}
.image-section h1 {
  font-size: 60px;
}
.image-grid {
  margin-top: 20px;
  
}
.encasilla{
  transition: transform 0.3s ease;
}
.encasilla:hover {
  transform: scale(1.2);
}
.image-grid img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  margin-right: 50px;
  /* Agrega margen derecho */
}
.image-grid img:last-child {
  margin-right: 0;
  /* Elimina el margen derecho en la última imagen de cada fila */
}
.row p {
  font-size: 17px;
}
.text-container {
  margin-top: 40px;
}
.text-container p {
  font-size: 50px;
}
.text-end {
  text-align: end;
}
/*Mapa*/
.mapa {
  width: 100%;
  height: auto;
  background-image: url(./Img/Fondos/BNNNGNFN.png);
  background-position: center top;
  background-size: cover;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Centrar contenido horizontalmente */
  padding: 40px 0;
}
.row h1 {
  padding: 30px;
  font-size: 60px;
}
.color1 {
  color: #a71828 /* Reemplaza con el color que desees antes del salto de línea */
}
.color2 {
  color:#000000; /* Reemplaza con el color que desees después del salto de línea */
}
.texto-izquierdo p {
  font-size: 30px;
  margin-bottom: 20px;
  text-align: center;
  margin-top: 80px;
  position: relative;
}
.imagen-derecha img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.imagen-derecha img:hover {
  transform: scale(1.1);
}
/*RED*/
.red {
  width: 100%;
  height: 1vh;
  background-color: #a71828;
  background-position: center top;
  background-size: cover;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
}
/*Tiendas*/
.tiendas {
  width: 100%;
  height: auto;
  background-color: #F2F2F2;
  background-position: center top;
  background-size: cover;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Centrar contenido horizontalmente */
  padding: 40px 0;
}
.encuentra h1 {
  font-size: 60px;
  position: relative;
}
.tiendalink img {
  width: 100%;
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.tiendalink img:hover {
  transform: scale(1.2);
}
/*Buscando*/
.buscando {
  width: 100%;
  height: auto;
  background-color:#a71828;
  background-position: center top;
  background-size: cover;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}
.buscando h1 {
  color: white;
  font-size: 90px;
  margin-bottom: 40px;
}
.rectangulo-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.rectangulo1 {
  position: relative;
  background-color: #a71828;
  width: 250px;
  max-width: 300px;
  height: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin: 40px;
  cursor: pointer;
  transition: all 0.3s; /* Transición suave para los cambios */
  overflow: hidden; /* Oculta el contenido que desborda el rectángulo */
}
.rectangulo1 img {
  color: white;
  width: 100%;
  height: auto;
}
.rectangulo1 .palabra {
  color: white;
  font-size: 36px;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  transition: color 0.3s, font-size 0.3s;
}
.rectangulo1:hover .palabra {
  text-decoration: none;
  font-size: 40px;
  display: none; /* Oculta el título al pasar el cursor */
}
.rectangulo1 .informacion {
  background-color: #a71828; /* Mismo color que el rectángulo1 */
  padding: 10px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Ajusta la altura al contenido */
  transform: translateY(-100%); /* Oculta inicialmente la información */
  opacity: 0; /* Oculta inicialmente la información */
  transition: transform 0.3s, opacity 0.3s; /* Transición suave */
}
.rectangulo1:hover .informacion {
  transform: translateY(0); /* Muestra la información */
  opacity: 1; /* Muestra la información */
}
.rectangulo1 .informacion a {
  color: white;
  font-size: 30px;
  text-decoration: none;
  transition: color 0.3s, font-size 0.3s;
  margin-top: 5px;
  display: block; /* Hacer que los enlaces sean elementos de bloque */
  text-align: center; /* Centrar el texto horizontalmente */
}
.vyr {
  text-align: center;
  padding: 40px 0;
}
.vyr h1 {
  margin-top: 50px;
  font-size: 57px;
}
.vyr h3 {
  color: white;
  font-size: 30px;
  margin-bottom: 40px;
}
.reciz,
.recder {
  background-color:#ffffff;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex: 1;
  color:#a71828 !important;
  padding-bottom: 40px;
}
.reciz h2,
.recder h2 {
  font-size: 40px;
  margin-bottom: 10px;
}
.reciz p,
.recder p {
  font-size: 35px;
}
.clear {
  clear: both;
}
.boce {
  text-align: center;
}
.botonvyr.disabled {
  pointer-events: none;
  background-color: #ffffff;
  color: #a71828;
  cursor: not-allowed; /* Cambia el cursor cuando esté desactivado */
  border: none;
  padding: 10px 60px;
  font-size: 25px;
  border-radius: 60px;
}
/*Iceberg*/
.iceberg {
  background-color: #a71828;
  color: #fff;
  text-align: center;
  padding: 40px 0;
  position: relative; /* Establece la posición a relativa */
  overflow: hidden;
  height: auto; /* Ajusta el valor de height a auto */
}
.ice {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Para ocultar el contenido que se extiende más allá */
}
.ice img {
  max-width: 100%;
  height: auto;
  display: block;
  z-index: 1;
  transition: transform 0.3s ease;
}
.ice img:hover {
  transform: scale(1.1);
}
.iceberg .black-overlay {
  position: absolute; /* Establece la posición a absoluta */
  width: 100%;
  height: 50%; /* Cambia esto a 50% para ocupar la mitad inferior */
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0;
  left: 0;
  z-index: 0;
}
/*SS*/
.ss {
  width: 100%;
  height: auto;
  background-color: #F2F2F2;
  background-position: center top;
  background-size: cover;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
}
.ss .txtm {
  font-size: 100px;
  margin-top: 0;
  text-align: left;
  margin-bottom: 40px;
  color: #000000;
}
.circuiro img{
  width: 100%;
  height: 100%;
}
.circulostxt {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centra horizontalmente */
  justify-content: center; /* Centra verticalmente */
}
.circulostxt img{
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.circulostxt img:hover{
  transform: scale(1.1);
}
.sectxt {
  color: #a71828;
  font-size: 38px !important;
}
.stxt {
  font-size: 30px;
  text-align: justify;
  position: relative;
}
/*Networking*/
.network {
  width: 100%;
  height: 1093px;
  background-image: url(./Img/Fondos/seccion-networking.png);
  background-position: left top; /* Alineado a la izquierda arriba */
  background-size: cover;
  display: flex;
  justify-content: flex-start; /* Alineado a la izquierda horizontalmente */
  align-items: center; /* Centrado verticalmente */
  padding-left: 20px; /* Margen izquierdo para separar del borde */
}
.content {
  text-align: left; /* Alinea el texto a la izquierda */
}
.network h1 {
  margin: 0; /* Elimina el margen superior de h1 */
  color: #ffffff;
  font-size: 60px;
}
.network p {
  color: #ffffff;
  font-size: 30px;
}
/*Mujer*/
.mujer {
  width: 100%;
  height: auto;
  background-color: #f5f5f5;
  background-position: center top;
  background-size: cover;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
}
.mujer .row-content h1 {
  text-align: justify; /* Mantén el texto justificado */}

.mujer .row-content img {
  width: 100%;
  height: auto;
  margin-top: 0; /* Elimina el margen superior de la imagen */
}
.mejclirec h3 {
  font-size: 30px;
}
.carousel-inner{
  margin-bottom: 60px;
}
.garantizado {
  margin-top: 50px; /* Reduje el margen superior */
  padding: 20px; /* Agregué un relleno para mejorar el espacio */
}
.garantizado h1 {
  color: #000000; /* Cambié a código hexadecimal para garantizar el color negro */
  font-size: 45px; /* Reduje el tamaño del texto para dispositivos móviles */
}
.garantizado p {
  color: #000000; /* Cambié a código hexadecimal para garantizar el color negro */
  font-size: 30px; /* Reduje el tamaño del texto para dispositivos móviles */
  text-align: center; /* Centré el texto */
}
.garantizado .d-flex {
  justify-content: center; /* Centré los botones horizontalmente */
  flex-wrap: wrap; /* Permití que los botones se envuelvan en dispositivos móviles */
}
.botonF2 {
  background-color: #a71828;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 30px; /* Reduje el tamaño del texto para dispositivos móviles */
  border-radius: 20px;
  margin: 100px; /* Añadí un pequeño margen entre los botones */
}
.botonF2[disabled] {
  cursor: not-allowed; /* Cambié a "not-allowed" para indicar que el botón está desactivado */
}
/*showroom*/
.showu {
  background-color: #a71828;
}
.showu img{
  max-width: 100%;
}
.showroom {
  display: flex;
  justify-content: column;
  align-items: center;
}
.showroom-info {
  text-align: center;
  margin: 20px 0;
}
.showroom-info h1 {
  font-size: 60px;
  margin-bottom: 10px;
  color: #ffffff;
}
.showroom-info p {
  font-size: 35px;
  margin-bottom: 20px;
  color: #ffffff;
}
.showroom-info .btn-custom {
  background-color:#ffffff;
  text-decoration: none;
  color: #a71828;
  border: none;
  padding: 10px 60px;
  font-size: 30px;
  border-radius: 50px;
  cursor: default;
  transition: background-color 0.3s;
  margin-bottom: 40px;
}
.showroom-info .btn-custom:hover {
  background-color: #000000;
  color: #ffffff;
}
.showroom-info a {
  text-decoration: none;
}
.circle-description-container {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.circle-text-container {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.circle-text-container p {
  font-size: 20px;
}
.circleshow {
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  margin-left: 150px;
}
.circleshow a {
  text-decoration: none;
  color: #a71828; /* Cambiar a blanco */
  font-size: 25px; /* Aumentar el tamaño del ícono */
}
.circleshow a:hover {
  color: #000; /* Cambiar el color al pasar el cursor sobre él */
}
.circle-description {
  color: rgb(0, 0, 0);
  font-size: 20px !important;
  margin: 0;
  margin-left: 15px;
}
.videoshow {
  border-radius: 100px;
  overflow: hidden;
  margin-left: 20px;
}
.alrevez {
  position: relative;
  bottom: 0;
  right: 0;
  transform: scaleX(-1);
}
/*testimonios*/
.testimonios {
  width: 100%;
  height: auto;
  background-image: url(./Img/Fondos/wallpaper--testimonio.png);
  background-position: center top;
  background-size: cover;
  display: flex;
  flex-direction: column;
  padding: 40px 0;
}
.clients-container {
  text-align: right;
  margin-left: 20px;
}
.clients-text {
  color: #ffffff;
  font-size: 60px;
  margin-bottom: 20px;
}
.testimo{
  display: flex;
  flex-direction: column;
  align-items: center; /* Centra horizontalmente */
  justify-content: center; /* Centra verticalmente */
}
.testimonios-row {
  margin-top: 20px;
  display: flex;
  justify-content: center; /* Centra horizontalmente los elementos */
  align-items: flex-start; /* Alinea los elementos en la parte superior */
  flex-wrap: wrap; /* Permite que los elementos fluyan a la siguiente fila */
}
.testi {
  flex: 1; /* Hace que todas las columnas tengan el mismo tamaño */
  max-width: 300px; /* Ancho máximo deseado */
  width: 100%; /* Para que las columnas ocupen el ancho completo */
}
.testimonio-box {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 20px;
  border-radius: 10px;
  margin: 10px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Alinea el contenido verticalmente */
  width: 300px;
  height: 500px; 
  align-items: center; /* Centra verticalmente */
}
.testimonio-box:hover {
  transform: scale(1.1);
}
.testimonio-box p {
  color: white;
  font-size: 20px;
  flex: 1; /* Hace que el contenido ocupe el espacio vertical disponible */
  margin-bottom: 10px; /* Espacio entre los párrafos */
}
.icon-container {
  margin-top: 20px; /* Reduce el espacio superior */
  display: flex;
  align-items: center;
}
.icon-container img {
  width: auto;
  height: auto;
  margin-right: 20px;
}
.textcontainer {
  margin-right: 10px;
}
.icon-container p {
  font-size: 15px;
  color: white;
}
.stars-container {
  font-size: 15px;
  /* Tamaño de las estrellas */
  color: #ffffff;
  /* Color de las estrellas */
  margin-top: 10px;
  /* Espacio entre el texto y las estrellas */
}
/*necesitas financiamiento*/
.financiamiento {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  background-color: #a71828;
}
.financiamiento img{
  max-width: 100%;
}
.necesitas {
  border-radius: 10px;
  padding: 40px;

}
.necesitas h1 {
  font-size: 80px;
  margin-bottom: 15px;
  color: #ffffff;
}
.necesitas p {
  font-size: 35px;
  margin-bottom: 20px;
  color:#ffffff;
}
.necesitas .btn-custom {
  background-color:#ffffff;
  color: #a71828;
  font-size: 35px;
  border-radius: 20px;
  cursor: default;
}
.necesitas .btn-custom:hover {
  background-color: #000000;
  color: #ffffff;
}
.imagefina {
  text-align: center;
  transition: transform 0.3s ease;
}
.imagefina:hover{
  transform: scale(1.1);
}
/*asesoramiento*/
/* Estilos para la sección de asesoramiento */
.asesoramiento {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  background-color: #000000;
  height: auto;
}
.asesoramiento__titulo {
  text-align: center;
  color: #ffffff;
  font-size: 60px;
}
/* Estilos para el formulario */
.card {
  border: none !important; /* Elimina el borde del card */
  background: transparent !important; /* Elimina el fondo del card */
  color: #ffffff;
}
.card p{
  border: none !important; /* Elimina el borde del card */
  background: transparent !important; /* Elimina el fondo del card */
  color: #ffffff;
}
.asesorami {
  width: 90%;
  max-width: 600px;
  margin: auto;
  margin-top: 30px;
  padding: 20px;
  position: relative;
  border: none; /* Elimina el borde del formulario */
  outline: none;
}
/* Estilos para los campos de entrada */
.asesorami .aseso_input {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 30px;
  font-size: 24px;
  color: #ffffff;
  background: #a71828;
  border-color:  #a71828;
  border-radius: 30px; /* Bordes curvos */
  border-top-left-radius: 15px !important;
  border-top-right-radius: 15px !important;
  border-bottom-left-radius: 15px !important;
  border-bottom-right-radius: 15px !important;
}
/* Estilos para las etiquetas */
.aseso_label {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 10px;
  color: #ffffff;
  cursor: text;
  transition: 0.2s;
  font-size: 24px;
}
.checkbox-lg[type="checkbox"] {
  transform: scale(2); /* Ajusta el valor según tu preferencia para el tamaño */
  margin-right: 10px;
  border: 1px solid #a71828;
  border-radius: 5px;
}
/* Estilos adicionales para mantenerlos en fila */
.form-check-inline {
  display: flex;
  align-items: center;
  color: #ffffff;
}
/* Estilos para las etiquetas de los checkboxes */
.form-check-label {
  font-size: 1.3em;
  cursor: pointer;
  flex-grow: 1;
}
/* Estilos para el botón */
.aseso_button {
  padding: 10px 0;
  color: #ffffff;
  outline: none;
  background: #a71828;
  width: 100%;
  cursor: pointer;
  font-size: 24px;
  border-color: #a71828;
  border-radius: 30px;
  margin-top: 20px;
}
.aseso_input:focus~label,
.aseso_input:valid~label {
  top: -35px;
  font-size: 20px;
}
.asesoramiento img {
  position: absolute; /* Añade posición absoluta a la imagen */
  max-width: 90%;
  max-height: 90%;
  object-fit: cover; /* Ajusta la imagen para que cubra todo el contenedor */
}
.videoaseso {
  overflow: hidden;
  border-radius: 80px;
}
.videoaseso iframe {
  border: none;
  max-width: 100%;
}
/* Estilos adicionales solo para la sección de asesoramiento */
.asesoramiento .col-md-6 {
  margin-bottom: 40px; /* Ajusta el valor según sea necesario */
}
/*footer*/
footer {
  background-color: #a71828;
  width: 100%;
  padding: 20px 0; /* Añadir un espacio en la parte superior e inferior */
}
footer p {
  font-size: 25px;
  color: #ffffff;
  text-decoration: none;
  margin: 0; /* Eliminar el margen predeterminado para el párrafo */
}
footer a {
  text-decoration: none;
}
.foot {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* Elimina margin: 0 auto; */
}
.ptxt p {
  /* Ajusta el tamaño de la fuente según sea necesario */
  font-size: 18px;
}
footer .d-flex img {
  margin: 0 5px; /* Espacio entre las imágenes */
}
footer .d-flex.align-items-center.justify-content-between img {
  width: 70px;
  margin: 5px 0; /* Espacio entre las imágenes y en vertical */
}
/*whatsapp*/
.btn-wsp{
  position: fixed;
  width: 55px;
  height: 55px;
  line-height: 55px;
  bottom: 30px;
  left: 30px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0p 1px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: transform 0.3s ease;
}
.btn-wsp:hover{
  text-decoration: none;
  color:#25D366;
  background:#ffffff;
  transform: scale(1.4);
}
@media (max-width: 767px) {
  .part2 {
    height: auto;
  }
  .txtcen h1 {
    font-size: 45px !important;
  }
  .vyr h1 {
    font-size: 40px;
  }
  .ss .txtm {
    font-size: 40px;
  }
  .stxt {
    font-size: 27px;
    text-align: justify;
    position: relative;
  }
  .video {
    width: 100% !important;
    height: 300px !important;
  }
  .videoshow {
    width: 100% !important;
    height: 300px !important;
  }
  .buscando h1 {
    font-size: 45px;
  }
  .necesitas h1 {
    font-size: 40px;
  }
  .necesitas p {
    font-size: 17px;
  }
  .necesitas .btn-custom {
    font-size: 17px;
  }
  .vyr h1 {
    margin-top: 0px;
  }
  .asesoramiento img {
    position: relative; /* Cambia la posición a relativa para que la imagen fluya con el contenido */
    max-width: 100%; /* Ajusta el ancho máximo de la imagen para que sea responsiva */
    height: auto; /* Ajusta la altura automáticamente para mantener la proporción */
    object-fit: contain; /* Puedes ajustar esto según tus preferencias */
  }
  .custom-box p {
    font-size: 35px;
  }
  .botonF2 {
    background-color: #a71828;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 20px; /* Reduje el tamaño del texto para dispositivos móviles */
    border-radius: 20px;
    margin: 5px; /* Añadí un pequeño margen entre los botones */
  }
  .videoshow {
    margin-left: 0px;
  }
  .circleshow {
    margin-right: 15px;
    margin-left: 30px;
  }
  .circle-description {
    color: rgb(0, 0, 0);
    font-size: 15px !important;
    margin: 0;
    margin-left: 15px;
  }
  .asesoramiento .col-md-6 {
    margin-bottom: 0px; /* Ajusta el valor según sea necesario */
  }
  .multipremiado .texto-centrado h1{
    color: white;
    font-size: 80PX;
    -webkit-text-stroke: 0px black; /* Agrega un borde negro alrededor del texto */
    text-stroke: 0px black; /* Agrega un borde negro alrededor del texto */
  }
  .multipremiado .texto-centrado p{
  color:white;
  font-size: 45PX;
  -webkit-text-stroke: 0px black; /* Agrega un borde negro alrededor del texto */
  text-stroke: 0px black; /* Agrega un borde negro alrededor del texto */
  }
}
@media only screen and (max-width: 767px) {
  .mejores ul {
    margin-left: 0;
    padding-left: 20px; /* Añade un relleno izquierdo para compensar la falta de margen */
  }
}

