@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');

 /* Aplicar estilos cuando el ancho de la pantalla es mayor o igual a 769px */
@media (min-width: 769px) {
  /* Estilos aquí */


  :root {
      --primary-color: #373742;
  }

  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
      font-family: "Open Sans", sans-serif;
      line-height: 1.5;
  }


  .titulos {
    font-weight: normal;
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 15px;
    color:#535353;
  }


  .titulos_w {
    font-weight: normal;
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 15px;
    color:#d6d6d6;
  }

  .video-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      background: var(--primary-color) url(./cover.jpg) no-repeat center center/cover;
  }

  .video-container video {
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);

  }

  .content {
    z-index: 1;
  }

  .header {
    width: 100%;
    height: 100%;
    position: fixed;
  }



  a {
      text-decoration:none;
      color: gainsboro;

      font-weight: normal;
      font-size: 18px;
      cursor: pointer;

  }


  h1 {
      font-weight: normal;
      font-size: 40px;
      line-height: 1.2;
      margin-bottom: 15px;
  }

  h3 {
      font-weight: normal;
      font-size: 20px;
      line-height: 1.2;
      margin-bottom: 15px;
      color: #fff;
  }

p {
  font-size: 10pt;
}


  .btn1 {
        display:inline-block;
        padding: 10px 50px;
        background:#ffe600;
        color: #696969;
        /*border: 1px #000000 solid;*/
        border-radius: 10px;
        margin-top: 20%;
        margin-right: 50px;
        opacity: 1;
        cursor: pointer;
  }

  .btn1:hover {
      transform: scale(1.1);
      background:#ffc400;
      color: #000000;    
      /*border: 1px #888888 solid;*/
      opacity: 1;
  }


.btn2 {
    display:inline-block;
    padding: 10px 50px;
    background:rgb(6, 0, 90);
    color: #ffffff;
   /* border: 1px #000000 solid;*/
    border-radius: 10px;
    margin-top: 25px;
    opacity: 1;
    cursor: pointer;
}

.btn2:hover {
  transform: scale(1.1);
  background:rgb(0, 60, 255);
  color: #f1f1f1;    
  /*border: 1px #888888 solid;*/
  opacity: 1;
}


  /*.btn_whatsapp {
    display:inline-block;
    padding: 10px 30px;
    background:#00923d;
    color: #f3f3f3;
    border: 1px #00923d solid;
    border-radius: 10px;
    margin-top: 25px;
    opacity: 0.7;
    cursor: pointer;
  }

  .btn_whatsapp:hover {
  transform: scale(1.1);
  background:#03b64d;
  color: #f1f1f1;    
  opacity: 1;
  border: 1px #f1f1f1 solid;

  }*/



  
  /***************************************************************************************************/


  .section_servicios {
    position: relative;
    /*height: 100vh; /* Ajusta la altura según tu diseño */
    /*background-image: url('./img/back2.jpg');*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /*overflow: hidden;*/
    /*background-color: #ebebeb; /* Color de fondo azul */
    /*justify-content: center;*/
        text-align: center;
    /*display:flex;*/
    
  }

  .card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Ajusta según tus necesidades */
    gap: 20px;

    flex-wrap: wrap;
    justify-content: space-between; /* Espaciado uniforme entre las tarjetas */
    margin: 20px;
    /*background-color: white;*/
    
  }

  .card {
      /*width: calc(25% - 20px); /* 25% de ancho para mostrar 4 tarjetas por fila */
      /* Estilos adicionales de la tarjeta */
      /*border: 1px solid #ccc; /* Borde tenue */
      border-radius: 10px; /* Borde curvo */
      padding: 5px; /* Espaciado interno para separar el contenido del borde */  
      /*background-color: whitesmoke;    */
      height:fit-content;
      transition: transform 0.3s;
      /*min-height: 350px;*/
      /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
      background-color: #fffffff1;
      border-radius: 10px;
  }

  .card:hover {
    transform: scale(1.10);
  }
  

  .card img {
    /*max-width: 275px;
    max-height: 275px;*/
    width: 200px;
    height: 200px;
    /*border-radius:10px;*/
    object-fit: contain;
    padding: 3%;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fafafaf1;*/

  }

  /*.img_card {
  width:auto;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img_card img{
  margin-top:15px;
  width:100%;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
}*/

.data_card {
    text-decoration: none;
    color: black; /* Cambia el color del texto según sea necesario */
    cursor: pointer;
    display: block; /* Convierte el enlace en un bloque para ocupar todo el contenedor */
}


  /********************************************************************/

  .column-labels,
  .column-inputs {
    flex-basis: 48%; /* Establecer un valor similar para ambas columnas */
    box-sizing: border-box;
  }
  
  .column-labels label {
    display: block;
    text-align: right; /* Alinea las etiquetas a la derecha */
    color: #575757;
    text-transform: uppercase;
    font-size: 18px;
    padding: 10px 0; /* Ajusta el espaciado vertical */
  }
  
  .column-inputs select,
  .column-inputs input {
    text-align: left;
    width: 100%; /* Asegura que los campos de entrada ocupen todo el espacio */
    border: none;
    background: #c9c9c9b3;
    outline: none;
    font-size: 18px;
    margin-top: 6px;
    padding: 10px 15px; /* Ajusta el espaciado */
    border-radius: 20px;
  }
  

/*************************************FOOTER*****************************************************/
  .section_footer {
    background-color: #424242;
    height: 600px;
    /*display: none;*/
  }

  footer {
    margin-left: 15%;
    margin-right: 15%;
    background-color: #424242;
    color: #fff;
    padding: 2%;
    display: flex;
    /*flex-wrap: wrap;*/
    justify-content: space-between;
    /*align-items: center;*/
  }

  .logo4 {
    /*background-color: #03b64d;*/
    max-width: 300px;
  }

  .logo4 img {
    width:90%;

  }


      .listas ul {
        
        list-style-type: none; /* Quita las viñetas */
        padding: 0; /* Elimina el espacio interno del ul */
      }

      .listas li {
        margin-bottom: 10px; /* Espaciado entre elementos */
      }

      .listas a {
        text-decoration: none; /* Quita el subrayado del enlace */
        color: #f3f3f3; /* Color del texto del enlace */
      }

  .contactos {
    font-size: 14px;
  }

  .redes {
    display: flex;
    /*background-color: crimson;*/
  }

  .otros {
    width:  30%;
    
  }

  .botones {
    border-style:solid;
    margin-bottom: 10px;
    text-align: center;
    height: 50px;
    align-items: center;
    justify-content: center;
  }

 .poweredby {
  text-align: center;
  font-size: 10px;
 }

 .final_movil{
  display: none;
 }

 /******************************** stilos para detalle.php***************************/

/*.contenedordetalles {
  max-width: 1250px;
  margin: 0 auto; 
}


.cuadro {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    
}


.parte-superior {
    flex: 1;
    
    display: flex;
    height: 500px;
    max-height: 500px;
    border-radius: 20px;
}

.superior-lado-izquierdo {
  flex: 2;
   max-width: 60%;
   overflow: hidden;
}

.superior-lado-izquierdo img {
  border-radius:20px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  padding: 3px;
}*/



.contenedordetalles {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

.cuadro {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.parte-superior {
    display: flex;
    gap: 25px;
}

.superior-lado-izquierdo {
    flex: 2;
}

.superior-lado-izquierdo img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.superior-lado-derecho {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    max-height: 400px;
}

.img-card img {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.img-card img:hover {
    transform: scale(1.05);
}

.parte-intermedia h2 {
    margin: 15px 0;
    font-weight: 600;
    color: #333;
}

.parte-inferior {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 20px;
}

.lado-izquierdo {
    flex: 2;
    color: #555;
    line-height: 1.6;
}

.lado-derecho {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lado-derecho h1 {
    color: #e53935;
    font-size: 2.2rem;
}


/************************************/
.superior-lado-derecho {
  flex: 1;
  /*background-color: rgb(241, 241, 241);*/
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  /*flex-wrap: wrap;
  justify-content: space-around;
  border-radius: 20px;*/
}

.superior-lado-derecho > div {
  flex: 1;
  min-width: 0; /* Para evitar que las imágenes desborden el contenedor */
  box-sizing: border-box; /* Para incluir el padding en el ancho total */
  padding: 3px; /* Añade espaciado entre las imágenes */
}

.superior-lado-derecho img {
  /*max-width: 100%;*/
  border-radius: 20px;
  width: 100%;
  height: 100%;
  /*display: block;*/
  /*margin: 0 auto;*/
  object-fit: cover;
  
}

.parte-intermedia {
  flex: 1;
  /*background-color: hsl(145, 54%, 45%);*/
}

.parte-inferior {
    flex: 2;
    display: flex;
}

.lado-izquierdo {
    flex: 2;
    background-color: #ffffff;
}

.lado-derecho {
    flex: 1;
    background-color: #ffffff;
}


}

/*-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*/


/* Estilos para pantallas más pequeñas (como celulares) */
@media (max-width: 768px) {

  
  
  :root {
    --primary-color: #373742;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
    line-height: 1.5;
}

.showcase {
  display: none;
}

.titulos {
  font-weight: normal;
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 15px;
  color:#535353;
}


.titulos_w {
  font-weight: normal;
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 15px;
  color:#d6d6d6;
}

.video-container {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--primary-color) url(./cover.jpg) no-repeat center center/cover;
}

.video-container video {
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);

}

.content {
  z-index: 1;
}

.header {
  width: 100%;
  height: 100%;
  position: fixed;
}



a {
    text-decoration:none;
    color: gainsboro;

    font-weight: normal;
    font-size: 18px;
    cursor: pointer;

}


h1 {
    font-weight: normal;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 15px;
}

h3 {
    font-weight: normal;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #fff;
}




.btn1 {
      display:inline-block;
      padding: 10px 50px;
      background:#ffd000;
      color: #696969;
      border: 1px #000000 solid;
      border-radius: 10px;
      margin-top: 20%;
      margin-right: 50px;
      opacity: 1;
      cursor: pointer;
}

.btn1:hover {
    transform: scale(1.1);
    background:#fffc60;
    color: #000000;    
    border: 1px #888888 solid;
    opacity: 1;
}


.btn2 {
  display:inline-block;
  padding: 10px 50px;
  background:rgb(17, 5, 175);
  color: #ffffff;
  border: 1px #000000 solid;
  border-radius: 10px;
  margin-top: 25px;
  opacity: 1;
  cursor: pointer;
}

.btn2:hover {
transform: scale(1.1);
background:rgb(0, 128, 202);
color: #f1f1f1;    
border: 1px #888888 solid;
opacity: 1;
}

/*
.btn_whatsapp {
  display:inline-block;
  padding: 10px 30px;
  background:#00923d;
  color: #f3f3f3;
  border: 1px #00923d solid;
  border-radius: 10px;
  margin-top: 25px;
  opacity: 0.7;
  cursor: pointer;
}

.btn_whatsapp:hover {
transform: scale(1.1);
background:#03b64d;
color: #f1f1f1;    
opacity: 1;
border: 1px #f1f1f1 solid;

}*/



/* Estilo para la barra de navegación ************************************************************/

.navbar {
display: none;
}



 .container_menu {
    display: flex;
    flex-direction: column;
}

.header_menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #333;
    color: white;
}

.header_menu img{
  width: 180px;
}

.menu-toggle {
    font-size: 20px;
    cursor: pointer;
}

.menu_movil {
    display: none;
    background-color: #111;
    padding: 20px;
}

.menu_movil ul {
    list-style-type: none;
    padding: 0;
}

.menu_movil li {
    padding: 8px;
}

.menu_movil a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.menu_movil a:hover {
    color: #57a;
}



/*stilo slider 2*//************************************************/

.services_movil {
  display: none;
}

.serviceslider {
  margin-left: auto;
  margin-right: auto;
  display:flex;
  width:90%;
  height:800px;
  /*height: 100vh;*/
  padding: 0 20px;
  align-items: center;
  text-align: center;
  justify-content: center;
  z-index: 0;
  color: #4a4848;
  /*background-color: #4a4848;*/
}

.serviceslider img {
  width: 0px;
  height: 80%;
  flex-grow: 1;
  object-fit: cover;
  opacity: .8;
  transition: .5s ease;
}

.serviceslider img:hover {
  cursor:pointer;
  /*height: 90%;*/
  width: 120px;
  opacity: 1;
  filter: contrast(110%);
}

/****************************************************************************************/
.section_quieness {
  position: relative;
  height: 100vh; /* Ajusta la altura según tu diseño */
  background-image: url('./img/back3.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  background-color: #002246;
  justify-content: center;
  text-align: center;
  display: none;
}


.quieneslider {
  margin-left: auto;
  margin-right: auto;
  display:flex;
  width:90%;
  height:800px;
  /*height: 100vh;*/
  padding: 0 20px;
  align-items: center;
  text-align: center;
  justify-content: center;
  z-index: 0;
  color: #4a4848;
  /*background-color: #4a4848;*/
}

.quieneslider img {
  width: 0px;
  height: auto;
  flex-grow: 1;
  object-fit: cover;
  opacity: .8;
  transition: .5s ease;
}



/***************************************************************************************************/




.card-container {
  display: grid;
  /*grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* Convierte en una cuadricula, Ajustar según necesidades */
  gap: 10px; /*espacio entre cards, u objetos*/

  flex-wrap: wrap;
  justify-content: space-between; /* Espaciado uniforme entre las tarjetas */
  margin: 10px;
  
}

.card {
    /*width: calc(25% - 20px); /* 25% de ancho para mostrar 4 tarjetas por fila */
    /* Estilos adicionales de la tarjeta */
    /*border: 1px solid #ccc; /* Borde tenue */
    border-radius: 20px; /* Borde curvo */
    padding: 5px; /* Espaciado interno para separar el contenido del borde */  
    background-color: whitesmoke;    
    height:fit-content;
    display:flex;
    /*min-height: 350px;*/
    justify-content: space-between;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.img_card {
  width:30%;

  /*display: flex;
  justify-content: center;
  align-items: center;*/
}

.img_card img{
  margin-top:15px;
  width:100%;
  height: auto;
  border-radius: 10px;
  /*object-fit: contain;*/
}

.data_card {
  padding: 10px;
  width: 70%;
  color: #000000;
  text-align: left  ;
  box-sizing: border-box;
  }

.card img {
  width: 100%;
  height: 100px;
  max-width: 100px;
  max-height: 100px;
  border-radius:20px;
  object-fit: contain;
}




/* .section_servicios {
  position: relative;
  height: 100vh; 
  background-image: url('./img/back2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  background-color: #002246; 
  justify-content: center;
  text-align: center;
  display: none;
  
}*/





.section_eventos {
  position: relative;
  height: 100vh; /* Ajusta la altura según tu diseño */
  background-image: url('./img/back4.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  background-color: #002246; /* Color de fondo azul */
  justify-content: center;

  display: none;
  flex-direction:column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  color: #4a4848;

}

.section_alianzas {
  position: relative;
  height: 100vh; /* Ajusta la altura según tu diseño */
  background-image: url('./img/back5.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  background-color: #00095a; /* Color de fondo azul */
  justify-content: center;

  display: none;
  flex-direction:column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  color: #ececec;
  z-index: -1;

}

.aliados_movil{
  display: none;
}

.aliados {
  margin-left: auto;
  margin-right: auto;
  display:none;
  width:80%;
  height:60%;
  /*height: 100vh;*/
  padding: 0 20px;
  align-items: center;
  text-align: center;
  justify-content: center;
  z-index: 0;
  color: #fcfcfc;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1%;
  /*background-color: #4a4848;*/
}

.aliado {
  margin-left: auto;
  margin-right: auto;
  display:none;
  width:350px;
  height:350px;
  /*height: 100vh;*/
  padding: 0 20px;
  align-items: center;
  text-align: center;
  justify-content: center;
  z-index: 0;
  color: #fcfcfc;
  background: rgba(255, 255, 255, 0.932);
  border-radius: 50%;
  /*background-color: #4a4848;*/
  cursor: pointer;
}

.aliados img {
  width: 0px;
  height: auto;
  flex-grow: 1;
  object-fit: cover;
  opacity: .8;
  transition: .5s ease;
  cursor: pointer;
  z-index: 1;
}

.section_contacto {
  position: relative;
  height: 100vh; /* Ajusta la altura según tu diseño */
  background-image: url('./img/back6.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  background-color: #002246; /* Color de fondo azul */
  justify-content: center;

  display: none;
  flex-direction:column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  color: #4a4848;

}


.section_form {
  position: relative;
  height: 100vh; /* Ajusta la altura según tu diseño */
  background-image: url('./img/contacto.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  background-color: #002246; /* Color de fondo azul */
  justify-content: center;

  display: none;
  flex-direction:column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  color: #4a4848;

}


.form {
  width: 90%;
  max-width: 800px;
  background: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 30px 30px;
  box-sizing: border-box;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 20px #000000b3;
  font-family: "Monserrat", sans-serif;
}

.container-form {
  display:none;
  border: 1px solid rgb(236, 236, 236);
  margin: 18px 0;
  padding: 12px 18px;
  border-radius: 20px;
  background: #f3f3f3;
  justify-content: space-between;
}

.form-img img {
  width: 20%; /* La imagen ocupará el 100% del ancho del contenedor */
  height: auto; /* La altura se ajustará automáticamente para mantener la proporción de la imagen */
  object-fit: cover; /* La imagen se ajustará para llenar el contenedor, recortando si es necesario */
  transition: width 0.5s;
  z-index: 1000;
}

.container-form label {
  display: block;
  text-align: center;
  color: #575757;
  text-transform: uppercase;
  font-size: 18px;
  padding: 10px 25px;
}

.container-form select,
.container-form input {
  text-align: left;
  width: 70%;
  border: #2874a6;
  background: #c9c9c9b3;
  outline: none;
  font-size: 18px;
  margin-top: 6px;
  padding: 10px 25px;
  border-radius: 20px;
}



/********************************************************************/

.column-labels,
.column-inputs {
  flex-basis: 48%; /* Establecer un valor similar para ambas columnas */
  box-sizing: border-box;
}

.column-labels label {
  display: block;
  text-align: right; /* Alinea las etiquetas a la derecha */
  color: #575757;
  text-transform: uppercase;
  font-size: 18px;
  padding: 10px 0; /* Ajusta el espaciado vertical */
}

.column-inputs select,
.column-inputs input {
  text-align: left;
  width: 100%; /* Asegura que los campos de entrada ocupen todo el espacio */
  border: none;
  background: #c9c9c9b3;
  outline: none;
  font-size: 18px;
  margin-top: 6px;
  padding: 10px 15px; /* Ajusta el espaciado */
  border-radius: 20px;
}
/********************************************************************/

input[type=submit],
.ENVIAR {
  display: inline-block;
  background-color: #2874a6;
  padding: 14px 0;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  width: 30%;
  border-radius: 10px;
}

.browser {
  display: none;
}

.success_ok img {
  /*background-color: #008ae6;*/
  width: 25%;
  
}

/*************************************FOOTER*****************************************************/
.section_footer {
  background-color: #424242;
  height: 600px;
  /*display: none;*/
}

footer {
  margin-left: 15%;
  margin-right: 15%;
  background-color: #424242;
  color: #fff;
  padding: 2%;
  /*display: flex;*/
  /*flex-wrap: wrap;*/
  justify-content: space-between;
  /*align-items: center;*/
}

.logo4 {
  /*background-color: #03b64d;*/
  max-width: 300px;
}

.logo4 img {
  width:90%;

}


    .listas ul {
      
      list-style-type: none; /* Quita las viñetas */
      padding: 0; /* Elimina el espacio interno del ul */
    }

    .listas li {
      margin-bottom: 10px; /* Espaciado entre elementos */
    }

    .listas a {
      text-decoration: none; /* Quita el subrayado del enlace */
      color: #f3f3f3; /* Color del texto del enlace */
    }

.contactos {
  font-size: 14px;
}

.redes {
  display: flex;
  /*background-color: crimson;*/
}

.otros {
  width:  100%;
  
}

.botones {
  border-style:solid;
  margin-bottom: 10px;
  text-align: center;
  height: 30px;
  align-items: center;
  justify-content: center;
}

.poweredby {
text-align: center;
font-size: 10px;
}

.final_movil{
display: none;
}

/****************************************FIN FOOTER************************************************/

}