* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body {
    width: 100vw;
    height: 100vh;
    background-color: #333333;
    cursor: url(images/mouse.png), auto;
   
}

a{
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32"><text y="20" font-size="20">☁️</text></svg>') 16 16, auto;
}

button{
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32"><text y="20" font-size="20">☁️</text></svg>') 16 16, auto;
  
}

@font-face {
    font-family:"mono1";
    src: url("./tipos/SourceCodePro-Black.otf")
  
   
}

@font-face {
    font-family:"mono2";
    src: url("./tipos/SourceCodePro-Bold.otf")
   
}

@font-face {
    font-family:"mono3";
    src: url("./tipos/SourceCodePro-Medium.otf")
   
}

@font-face {
    font-family:"mono4";
    src: url("./tipos/SourceCodePro-Regular.otf")
   
}

@font-face {
    font-family:"mono5";
    src: url("./tipos/SourceCodePro-Semibold.otf")
   
}

@font-face {
    font-family:"roman";
    src: url("./tipos/HelveticaNeueLTStd-Roman.otf")
   
}

@font-face {
    font-family:"bold";
    src: url("./tipos/ArchivoBlack-Regular.ttf")
   
}




.contenedor {
     /* position: absolute;*/
    width: 100vw;
  background-color: #333333;
    overflow: hidden;   
}



.cont-gral{
    display: flex;
    width: 95vw;
    margin: 0 auto 0;
    background-color: #333333;
    height: 100vh;

}

.gral{
    color: #a4abb6;
    font-family:"mono4";
    font-size: clamp(.9rem, .9vw, .9rem);
    
}


.ventana{
    display: flex;
    width: 30vw;
    height: 20vh;
    background-color: #a4abb6;
    position: fixed;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    border-radius: 10px;

}

.vent{
  width: 100%;
  height: 100%;
  background-color: gray; /* Fondo gris */
  background-image: radial-gradient(black 20%, transparent 25%); /* Puntos negros */
  background-size: 5px 5px; /* Espaciado entre puntos */

}

.vent-cont{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
   
}

.barra{
    width: 100%;
    background-color: #a4abb6;
    color: #333333;
    font-family:"mono2";
    font-size: clamp(.9rem, .9vw, .9rem);
    height: fit-content;
    display: flex;
    justify-content: space-between;
    padding: .3vh 1vw;
}

.mensaje1{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #a4abb6;
    margin: 1vh 1vw 0 1vw;
}


.mensaje2{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #a4abb6;
    margin: 0 1vw;
   
}
.botones{
    width: 100%;
    display: flex;
}

.uno{
    color: #333333;
    font-family:"mono4";
    font-size: clamp(.7rem, 1.5vw, 2rem);
}

.dos{
    color: #333333;
    font-family:"mono4";
    font-size: clamp(.5rem, .8vw, .9rem);
}

.botones{
width: 100vw;
display: flex;
gap: 2vh;
align-items: center;
justify-content: center;

margin: 0 1vw;
}


.tipos-btn{
    border-radius: 0;
    background-color: #333333;
    color: #a4abb6;
    padding: 3px 10px;
    outline: none;
    border: #a4abb6 solid 1px;
    font-family:"mono3";
    font-size: clamp(.5rem, .8vw, .8rem);
    box-shadow: 2px 2px 0  #333333;
}




 /* legales-b versión mobil*/

 
    
     /* legales-b versión mobil BOTON Y TODO EL MENU MOBIL COMPLETOP*/
    
     .legales3b{
   
        z-index: 3;
        width: 50%;
    }
    
    .menu-button {
        position: fixed;
        color: #333333;
        font-family:"mono2";
        font-size: .6rem;
        padding: 2px 8px;
        background-color: #f7931e;
        border-radius: 25px;
        text-decoration: none;
        outline: none;
        border: none;
      }
    
      .contenedor-menu-full{
        display: flex;
        flex-wrap: wrap;
        width: 93vw;
        margin: 0 auto 0;
        justify-content: center;
      
       
        
      }
    
      .fullscreen-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #333333;
        color: #fff;
        display: flex;
        flex-wrap: wrap;
        /*flex-direction: column;*/
        align-items: center;
        justify-content: center;
        opacity: 0;
        transform: scale(0);
        transform-origin: bottom left;
        transition: opacity 0.5s ease, transform 0.5s ease;
        pointer-events: none;
        z-index: 8;
      }
    
    
     .cont-items{
        display: flex;
        justify-content: space-between;
        width: 100%;
        margin: 3.5vh 0;
     }
    
     .cont-items p{
        font-family:"mono3";
        font-size: 1rem;
        color: #a4abb6;
     }
    
      .menu-items{
       
        justify-items: center;
       
      }
    
      .menu-items li,
      .menu-items a {
        list-style: none;
        font-family:"mono3";
        font-size: 1rem;
       
        color: #a4abb6;
        text-decoration: none;
        cursor: pointer;
        transition: transform 0.3s;
      }
    
       .fullscreen-menu.show {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
      }
    
    
      .social-links a {
        list-style: none;
        
        color: #333333;
        text-decoration: none;
        cursor: pointer;
        transition: transform 0.3s;
      }
    
      .menu-items li:hover,
      .social-links a:hover {
        transform: scale(1.1);
      }
    
      .social-links{
        display: flex;
        width: 100%;
        justify-content: space-between;
        font-family:"mono3";
        font-size: 1rem;
        gap: 2vh;
        border-bottom: 1px solid #a4abb6;
        border-top: 1px solid #a4abb6;
        padding: 2vh 0;
        margin: 0 0 0 0;
      }
    
    
    .btn-menu-mob{
        border-radius: 50px;
        background-color: #a4abb6;
        color: #333333;
        padding: 3px 10px;
        outline: none;
        border: none;
        font-family:"mono3";
        font-size: .7rem;
        width: 48%;
    }
    
    
    .directorio{
        display: flex;
        width: 100%;
        justify-content: space-between;
        font-family:"mono4";
        font-size: .8rem;
        border-bottom: 1px solid #a4abb6;
      
        padding: 2vh 0;
     
        flex-wrap: wrap;
    }
    
    .indicador{
        display: flex;
        width: 100%;
        justify-content: space-between;
        font-family:"mono2";
        font-size: .5rem;
        padding: 2vh 0;
    }
    
    .legal-menu-mob{
        display: flex;
        width: 100%;
        justify-content: space-between;
        font-family:"mono2";
        font-size: .65rem; 
        position: absolute;
        bottom: 3vh;
        padding: 0 3vw;
    }
    
    
      .close-button {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2rem;
        color: #fff;
        text-decoration: none;
        cursor: pointer;
        font-family:"mono3";
      }
    
      .icono-imaac{
        position: absolute;
        top: 20px;
        left: 20px;
      }
    
      .icono-imaac img{
        width: 20%;
      }






 /* TERMINA legales-b versión mobil BOTON Y TODO EL MENU MOBIL COMPLETOP*/
















/*seccion FOOTER home*/




.footer{
    display: flex;
    width: 95svw;
    margin: 0 auto 0;
    background-color: #333333;
    flex-wrap: wrap;
    padding: 3vh 0 1vh 0;
}


.footer-datos{
    display: flex;
    width: 100%;
    padding-bottom: 10vh;
    
}
.footer-datos a{
    text-decoration: none;
    list-style-type: none;
}

.footer-datos1{
    display: flex;
    width: 50%;
    flex-wrap: wrap;
    align-items: center;
   
}
.footer-datos1 p{
    font-family:"mono3";
    color: #a4abb6;
    font-size: clamp(.5rem, .8vw, .8rem);
}



.datos1{
   display: flex;
   width: 100%;
   padding: .3vh;
}



.footer-datos2{
    display: flex;
    width: 25%;
    padding-left: 1vw;
    flex-wrap: wrap;
}

.email{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.movil{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    padding-top: 10px;
    
}

.datos2{
    font-family:"mono2";
    color: #a4abb6;
    font-size: clamp(.5rem, .8vw, .8rem);
    display: flex;
    width: 100%;
}

.datos2a{
    font-family:"mono4";
    color: #a4abb6;
    font-size: clamp(.5rem, .8vw, .8rem);
    display: flex;
    width: 100%;
}

.footer-datos3{
    display: flex;
    width: 25%;
    
    flex-wrap: wrap;
  
}

.redes{
    display: flex;
    width: 100%;
    padding: .3vh;
    justify-content: end;
}

.redes p{
    font-family:"bold";
    color: #a4abb6;
    font-size: clamp(.5rem, .8vw, .8rem);
}



.footer-logo{
    display: flex;
    width: 50%;
}

.footer-logo img{
   
    width: 100%;
}







/*-------RESPONSIVE--------*/





@media (max-width: 1536px) {

  

}

@media (max-width: 1440px) {


}

@media (max-width: 1280px) {
   
}

@media (max-width: 1024px) {
  


    .serv-izq{
        width: 100%;
    }
    
    .cont-ser-der{
        width: 100%;
        height: auto;
    }
    
    .serv-der {
       
        padding: 6vh 3vw 6vh 3vw;
    }
    
    .encabezado{
       height: auto;
       margin: 0vh 0 5vh 0;
    }

    .serv{
        height: auto;
        margin: 0vh 0 5vh 0;
     }
    
    .texto-grande{
        height: auto;
       margin: 0vh 0 8vh 0;
    }
    
    .area{
        height: auto;
        padding-bottom: 1vh;
    }

    .texto-chico{
        height: auto;
       
    }

.tipos{
    height: auto;
    margin: 0vh 0 7vh 0; 
}

.ventana{
    width: 50vw;
    height: 20vh;
}

}

@media (max-width: 768px) {
    .ventana{
        width: 50vw;
        height: 20vh;
    }

}



@media (max-width: 640px) {


    .ventana{
        width: 60vw;
        height: 20vh;
    }
 /*header*/   







.legales{
    display: none;
}

.legalesb{
    display: flex;
     }


     
header nav{
    display: none;
}    














.footer-datos {
    flex-wrap: wrap;
    padding-bottom: 3vh;
}

.footer-datos1 {
    flex-wrap: wrap;
    width: 100%;
}

.datos1 {
   
    width: 33.333%;
}

#datos1izq{
    justify-content: end;
}

.footer-datos2{
    width: 50%;
    padding-top: 3vh;
}

.footer-datos3{
    width: 50%;
    padding-top: 3vh;
}


}









@media (max-width: 475px) {

}