* {
padding:0; 
margin: 0;
} 

body{
   background-color: #f1772e;
   margin: 0;
   padding: 0;
}

/* FOOTER */

footer{
   background-color: #2956e9;
}

.grid-footer {
   display: grid;
   grid-template-columns: repeat(4, 1fr); 
   gap: 20px;
}

@media (max-width: 1250px) and (max-height: 1200px){
   .grid-footer {
      display: grid;
      grid-template-columns: repeat(2, 1fr); 
      gap: 20px;
   }   
}

@media (max-width: 992px){
   .grid-footer{
      display: block;
   }
}

.logo-footer{
   margin: auto;
   display: block;
   max-width: 60%;
   filter: drop-shadow(0 0 5px #fff);
}

@media (max-width: 1250px) and (max-height: 1200px){
   .logo-footer {
      max-width: 35%;
   }   
}

@media (max-width: 992px){
   .logo-footer{
      max-width: 50%;
   }
}

@media (max-width: 500px){
   .logo-footer{
      max-width: 80%;
   }
}

.parrafo-footer {
   display: block;
   font-family: Lora, serif;
   color: #eee;
   font-size: 100%;
   /*text-shadow: 0px 0px 10px #7ad3ff;*/
   text-align: center;
   margin: 0 2px 0 2px;
   padding-top: 0;
   padding-bottom: 0;
}

@media (max-width: 1450px) and (max-height: 1200px){
   .grid-footer {
      font-size: 80%;
   }   
}

@media (max-width: 600px){
   .parrafo-footer {
      font-size: 110%;
   }
}

/* FIN FOOTER */

.flex {
   display: flex;
   text-align: center;
   justify-content: center;
   align-items: center;
}

.cont-vyf{
   position: relative;
   z-index: 50;
   display: flex;
   justify-content: space-between;
}

.vyf{
   position: relative;
   z-index: 50;
   font-family: Lora, serif;
   font-size: 100%;
   color: #eee;
   letter-spacing: 2px;
}

@media (max-width: 992px){
   .vyf{
      font-size: 80%;
   }
}

@media (max-width: 550px){
   .vyf{
      font-size: 65%;
   }
}

.izq{
   flex: 1;
   text-align: left;
   margin-left: 20px;
}

.der{
   flex: 1;
   text-align: right;
   margin-right: 20px;
}

.hora{
   font-family: Lora, serif;
   font-size: 100%;
   color: #eee;
   margin-right: 20px;
   text-align: right;
   letter-spacing: 2px;
}

@media (max-width: 992px){
   .hora{
      font-size: 80%;
   }
}

@media (max-width: 550px){
   .hora{
      font-size: 65%;
   }
}


/* ESTILOS CLIENTES */

.logo-cent{
   margin: auto;
   display: block;
   max-width: 20%;
}

@media (max-width: 992px){
   .logo-cent{
      max-width: 30%;
   }
}

@media (max-width: 400px){
   .logo-cent{
      max-width: 70%;
   }
}

.tit-prin{
   font-family: Lora, serif;
   color: #eee;
   font-size: 350%;
   /*text-shadow: 0px 0px 10px #7ad3ff;*/
   text-align: center;
   width: 70%;
   margin: auto;
}

@media (max-width: 992px){
   .tit-prin{
      font-size: 350%;
      width: 85%;
   }
}

@media (max-width: 600px){
   .tit-prin{
      font-size: 280%;
      width: 90%;
   }
}

.titulo-ucg{
   display: block;
   font-family: Lora, serif;
   color: #eee;
   font-size: 150%;
   text-shadow: 0px 0px 10px #7ad3ff;
   text-align: center;
   margin: 0 2px 0 2px;
   padding-top: 0;
   padding-bottom: 0;
}

@media (max-width: 600px){
   .titulo-ucg{
      font-size: 110%;
   }
}

/* compartir sitio */

.contenedor-boton {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.boton-compartir-sitio {
    background-color: #1848e7; /* azul */
    color: white;
    text-decoration: none;
    padding: 15px 15px;
    border-radius: 8px;
    font-size: 18px;
    letter-spacing: 1px;
    width: 220px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

@media(max-width:650px){
   .boton-compartir-sitio{
      font-size: 14px;
   }
}

.boton-compartir-sitio:hover {
    background-color: #2956e9;
    transform: scale(1.05);
}

.img-share {
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 10px;
    filter: brightness(0) invert(1); /* blanco, si es PNG oscuro */
}

.menu-compartir-sitio {
     display: none;
     position: absolute;
     top: 100%;
     background: #fff;
     border: 1px solid #ddd;
     border-radius: 8px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
     padding: 10px;
     width: 220px;
     z-index: 9000;
     flex-direction: column;
     gap: 10px;
 }

 .menu-compartir-sitio .a-compartir-sitio,
 .menu-compartir-sitio button {
     text-decoration: none;
     color: #333;
     background: none;
     border: none;
     padding: 10px;
     text-align: left;
     width: 100%;
     cursor: pointer;
     font-size: 16px;
     border-radius: 6px;
     display: flex;
     align-items: center;
     gap: 8px;
     transition: background 0.2s;
 }

 .menu-compartir-sitio .a-compartir-sitio:hover,
 .menu-compartir-sitio button:hover {
     background: #f0f0f0;
 }

.comercio{
   color: #eee;
   margin: 0 30%;
}

@media (max-width: 1500px){
   .comercio{
      margin: 0 24%;
   }
}

@media (max-width: 992px){
   .comercio{
      margin: 0 15%;
   }
}

@media (max-width: 600px){
   .comercio{
      margin: 0 5%;
   }
}

.explicacion{
   display: flex;
   justify-content: center;
   align-items: center;
   width: 70%;
   margin: auto;
   color: #eee;
}

@media (max-width: 600px){
   .explicacion{
      width: 90%;
   }
}

.div-corazon{
   display: inline-flex;
   justify-content: center;
   width: 100%;
   align-items: center;
   text-align: center;
   margin: auto;
}

.p-corazon{
   display: inline;
   margin: 0;
   font-weight: bold;
   font-family: Lora, serif;
   font-size: 140%;
   color: #eee;
}

@media (max-width: 600px){
   .p-corazon{
      max-width: 40px;
   }
}

.corazon{
   display: inline;
   margin-left: 10px;
   margin-right: 10px;
   max-width: 50px;
   cursor: pointer;
   transition: transform 0.5s;
}

@media (max-width: 600px){
   .corazon{
      max-width: 40px;
   }
}

.corazon:hover {
  transform: scale(1.1); 
  transition: transform 0.5s; 
}

.corazon:focus{
   outline: none;
}

/*CARROUSEL DE IMAGENES*/

* {box-sizing:border-box}

/* contenedor de carrousel */
.carrousel {
  width: 100%;
  position: relative;
  margin: auto;

}

/* esconder imagenes */
.diapo {
  display: none;
}

@media (max-width: 550px){
   .diapo {
      display: flex;
      justify-content: center; /* Centra horizontalmente */
      align-items: center;
   }
}

img {
   width: 90%;
   margin: 0 5%;
}

@media (max-width: 550px){
   img {
      width: 80%;
      text-align: center;
      margin: 0 10%;
   }
}



/* boton previo y posterior */
.prev, .poste {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* posiciond el boton posterior */
.poste {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* color de fondo de previo y posterior */
.prev:hover, .poste:hover {
  background-color: rgba(0,0,0,0.8);
}

/* texto */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* numero */
.numdiap {
  color: #121212;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* puntos de diapositivas */
.puntodiap {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #242424;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .puntodiap:hover {
  background-color: #7ad3ff;
}

/* animacion desvanecer */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* FIN CARROUSEL*/

.div-logos-s{
   display: flex;
   justify-content: center;
   align-items: center;
}

.logos-sociales{
   padding: 3px;
   display: inline;
   width: 50px;
   height: 50px;
   margin: 5px;
   filter: drop-shadow(0 0 10px #eee);
   transition: .5s;
   transition: transform .5s ease;
}

@media (max-width: 450px){
   .logos-sociales{
      width: 50px;
      height: 50px;
      margin: .5px;
   }
}

.logos-sociales:hover{
   filter: drop-shadow(0 0 20px #fff);  
   transform: scale(1.18);
   transition: .5s;
}

.logos-sociales:focus{
   outline: none;
}

.p-negocio{
   font-family: Lora, serif;
   font-size: 130%;
   letter-spacing: 1px;
   color: #fff;
}

@media (max-width: 470px){
   .p-negocio{
      font-size: 100%;
   }
}

.uc-texto{
   background-color:#2956e9;
}

.p-uc-texto {
   color: #fff;
   font-family: Lora, serif;
   color: #f2f4f6;
   font-size: 120%;
   text-align: left;
   letter-spacing: 1px;
   margin: 3vh 25%;
}

@media (max-width: 992px){
   .p-uc-texto{
      margin: 0 15%;
   }
}

@media (max-width: 600px){
   .p-uc-texto{
      margin: 0 5%;
   }
}

.uc-texto2{
   border-top: 3px solid #f1f2f3;
   border-bottom: 3px solid #f1f2f3;
   width: 80%;
   margin: auto;
   background-color:#2956e9;
}

@media (max-width: 992px){
   .uc-texto2{
      width: 90%;
   }
}

@media (max-width: 600px){
   .uc-texto2{
      width: 100%;
   }
}

.p-uc-texto2 {
   color: #fff;
   font-family: Lora, serif;
   color: #f2f4f6;
   font-size: 195%;
   text-align: center;
   letter-spacing: 7px;
   margin: 3vh 25%;
}

@media (max-width: 992px){
   .p-uc-texto2{
      letter-spacing: 3px;
      font-size: 120%;
      margin: 0 15%;
   }
}

@media (max-width: 600px){
   .p-uc-texto2{
      letter-spacing: 2px;
      font-size: 100%;
      margin: 0 5%;
   }
}

.uc-texto3{
   border-top: 3px solid #f1f2f3;
   border-bottom: 3px solid #f1f2f3;
   margin: auto 20%;
   padding: 15px;
   background-color:#2956e9;
}

@media (max-width: 992px){
   .uc-texto3{
      margin: auto 15%;
   }
}

@media (max-width: 600px){
   .uc-texto3{
      margin: auto 0;
   }
}

.p-uc-texto3 {
   color: #fff;
   font-family: Lora, serif;
   color: #f2f4f6;
   font-size: 195%;
   text-align: center;
   letter-spacing: 7px;
   margin: 3vh 25%;
}

@media (max-width: 992px){
   .p-uc-texto3{
      margin: 0 15%;
   }
}

@media (max-width: 600px){
   .p-uc-texto3{
      margin: 0 5%;
   }
}

.tit-prin2{
   font-family: Lora, serif;
   color: #eee;
   font-size: 350%;
   /*text-shadow: 0px 0px 10px #7ad3ff;*/
   text-align: center;
   -webkit-text-stroke-width: 2px;
   -webkit-text-stroke-color: #eee;
}

@media (max-width: 992px){
   .tit-prin2{
      font-size: 350%;
   }
}

@media (max-width: 600px){
   .tit-prin2{
      font-size: 160%;
   }
}

/* CONTENEDOR DIAPOSITIVA*/

.diapo2-container {
  width: 70%;
  position: relative;
  margin: auto;
}

@media (max-width: 992px){
   .diapo2-container{
      width: 70%;
   }
}

@media (max-width: 600px){
   .diapo2-container{
      width: 100%;
   }
}

/*Imagen de slide*/

.img-slide{
   display: flex;
   justify-content: center;
   margin: auto;
  max-width: 50%;
}

@media (max-width: 992px){
   .img-slide{
      max-width: 90%;
   }
}

@media (max-width: 600px){
   .img-slide{
      max-width: 100%;
         }
}

/* Estilo para las imágenes */
.diapo2 {
  display: none;
}

/* FIN */

.rubro2{
   margin: 10px auto 10px;
   display: block;
   justify-content: center;
   align-items: center;
   border-radius: 30px;
   width: 300px;
   height: 80px;
   background-color: #2956e9;
  /* background-image: url(fonbot.png);*/
   font-family: Lora, serif;
   letter-spacing: 2px;
   font-size: 130%;
   color: #f2f4f6;
   text-shadow: 0px 0px 5px #7ad3ff;
   text-align: center;
   box-shadow: 0 0 10px #7ad3ff;
   border: 3px solid #7ad3ff;
   cursor: pointer;
   padding-top: 25px;
   
}

@media (max-width: 470px){
   .rubro2{
      font-family: Lora, serif;
      width: 80%;
      margin: 10px auto 10px;
   }
}

.rubro2:hover{
   /*background-image: url(textura2.jpg);*/
   background-color: #71b3ec;
}

.div-qr-menu {
   display: flex;
   justify-content: center;
   align-items: center;
}

.qr-menu{
   margin: auto;
   text-align: center;
   width: 60%;
}

@media (max-width: 900px){
   .qr-menu{
     width: 50%;
   }
}

.mapacont{
     display: flex;
     justify-content: center;
     width: 100%;
    }

.mapasuc{   
    width: 600px;
    height: 480px;    
}

@media (max-width: 992px){
   .mapasuc{
     width: 80%;
     height: 480px;
   }
}

#map {
   width: 100%; /* Ajustar tamaño base para dispositivos móviles */
   height: 500px; /
}

/* GALERIA DE CLIENTE EN GRID */

.galeria {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 15%;
}

@media (max-width: 600px){
   .galeria{
      grid-template-columns: repeat(3, 1fr);
      width: 100%;
      margin: 0;
   }
}

.galeria-item {
    margin: 0; /* Elimina los márgenes */
    padding: 0; /* Elimina el relleno */
    text-align: center;
    cursor: pointer;
    overflow: hidden;    
}

.galeria-item img {
   margin: 0;
    width: 100%; /* Asegura que la imagen ocupe todo el espacio disponible en la celda */
    height: 100%;
    transition: .5s;
}

.galeria-item:hover img {
   transform: scale(1.05);
   transition: .5s;
}

/* Estilos para el lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 500;
    text-align: center;
}

.lightbox-contenido {
    margin: 100px auto;
    max-width: 600px;
    max-height: 600px;
}

@media (max-width: 1400px) and (max-height: 1200px){
   .lightbox-contenido {
      margin: 70px auto;
      max-width: 400px;
      max-height: 400px;
   }   
} 

@media (max-width: 550px){
   .lightbox-contenido {
    margin: 100px auto;
    max-width: 300px;
    max-height: 300px;
   }
}

.lightbox-contenido2 {
    margin: 100px auto;
    max-width: 600px;
}

@media (max-width: 1550px) and (max-height: 780px){
   .lightbox-contenido2 {
      max-width: 420px;
   }   
} 

@media (max-width: 550px){
   .lightbox-contenido2 {
    margin: 100px auto;
    max-width: 300px;
   }
}

.cerrar {
    color: white;
    font-size: 35px;
    position: absolute;
    top: 85px;
    right: 30px;
    cursor: pointer;
}

.flecha {
    cursor: pointer;
    position: absolute;
    top: 50%;
    font-size: 50px;
    color: white;
    padding: 10px;
    user-select: none;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
}

@media (max-width: 650px) {
    .flecha {
        top: 32%;
    }
}

.flecha.izquierda {
    left: 30px;
}

@media (max-width: 650px) {
    .izquierda {
        font-size: 30px;
    }
}

.flecha.derecha {
    right: 30px;
}

@media (max-width: 650px) {
    .derecha {
        font-size: 30px;
    }
}
/* FINDE GALERIA GRID */

/* ESTILOS ACORDEON */

.accordion {
    width: 80%;
    margin: auto;
    max-width: 600px;
}

@media(max-width: 600px) {
    .accordion {
        width: 95%;
    }
}

.accordion-item {
   border: 5px solid #2956e9;
   margin-bottom: 5px;
}

.accordion-header {
    display: flex;
    justify-content: left;
    font-family: 'Arial', sans-serif;
    align-items: center;
    width: 100%;
    padding: 15px;
    background-color: #ea7935;
    color: #fff;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.5s ease;
}

@keyframes gradient{
   0%{
      background-color: #ea7935;
   }
   50%{
      background-color: #1d00ff;
   }
   100%{
      background: #2956e9;
   }  
}

.accordion-header:hover {
   background: #2956e9;
    animation: gradient .3s ease-in;
}

.accordion-content {
    padding: 0 15px;
    height: 0;
    overflow: hidden;
    background: #f9f9f9;
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    color: #777;
    transition: height 0.3s ease;
}

.accordion-content p{
   padding: 15px;
}

.accordion-content.open {
    height: auto;
    padding: auto 15px;
}

.mas-acordeon {
   max-width: 35px;
   max-height: 35px;
   transition: transform 0.3s ease;
}

@media(max-width: 600px){
   .mas-acordeon {
      max-width: 25px;
      max-height: 25px;
      margin-left: 0px;
      margin-right: 15px;
   }
}

.mas-acordeon.rotated {
    transform: rotate(540deg);
}

.map {
   height: 500px;
   width: 100%;
}

.map2 {
   height: 300px;
   width: 100%;
}

.videos {
   display: flex;
   text-align: center;
   justify-content: center;
}

.videos video {
   max-width: 550px;
}

@media (max-width: 600px) {
   .videos video{
      max-width: 420px;
   }
}

@media (max-width: 420px) {
   .videos video{
      width: 100%;
      max-width: 100%;
   }
}

a:link, a:visited, a:active {
    text-decoration:none;
}