/* Global Reset */

/* PARA CARGAR UNA FUENTE DESCARGADA*/
@font-face{
    font-family: audiowide;
    src:url("../fuentes/Audiowide/Audiowide-Regular.ttf");
    font-family: play;
    src:url("../fuentes/Play/Play-Regular.ttf");
    font-family: comforta;
    src:url("../fuentes/Comfortaa/Comfortaa-VariableFont_wght.ttf");
    font-family: ubuntu;
    src:url("../fuentes/Ubuntu/Ubuntu-Regular.ttf");
    font-family: mukta;
    src:url("../fuentes/Mukta/Mukta-Regular.ttf");
    font-family: redhat;
    src:url("../fuentes/Red_Hat_Text/RedHatText-Italic-VariableFont_wght.ttf");
    font-family: quatro;
    src:url("../fuentes/Quattrocento_Sans/QuattrocentoSans-Regular.ttf");
  }

*  {
    font-family: quatro ,'Allerta', arial, Tahoma;
    box-sizing: border-box;
    margin: 0;
    
}


body {
  /* FUENTE DESCARGADA font-family: unineue;*/
  font-family: mukta, sans-serif;
  
   font-size: 20px;
    text-align:center;
    color:#b45555;
    margin-top: 80px;
    margin-left: 0;
    margin-right: 0;
    
    --opacidad-negro: 0.5;
    background-image: linear-gradient(rgba(0, 0, 0, var(--opacidad-negro)), rgba(0, 0, 0, var(--opacidad-negro))),url("../imagenes/fondo4.jpg");
    background-size:cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    
}

header{
    
}
header nav{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
     background: rgb(75, 106, 178);
    height: 85px;
    
    padding: 2% 2%;
    justify-content: flex-end; 
    align-items: center;
   /* border-bottom: 0.3px solid #bdbdbd;*/
    box-shadow: 2px 2px 2px 2px rgb(0, 0, 0, 0.2);
    /*transition: all 1s ease-out 0s;*/
    z-index: 1;

    
}
header .logo{
    cursor:pointer;
    margin-right: auto;
    margin-top: 3px;
    margin-left: 1%;
    
}

header .logo img{
    height: 60px;
    width: auto;
    transition: all 0.5s;
    
   
}

header .logo img:hover{
    transform: scale(1.1);
}

header .nav-links{

    list-style: none;
}

header .nav-links li{

    display: inline-block;
    padding: 0 0px;
}

header .nav-links li:hover,
.overlay a:hover{

    
    
}

header .nav-links a{
    font-size: 1.1rem;
    
    padding: 10px ;
    
    border-radius: 0%;
    margin: 1px;
   
    
}

header .nav-links a:hover{
    
    
    
}


.galeriacriptos{
    width: 100%;
    margin: 105px 0% 0px 0%;
    align-items: center;
    justify-content: center;
    display: flex;
}

.galeriacriptos img{
    width: 5%;
    height: auto;
    margin: 1%;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.7));
    
}



h1{
    font-family: quatro;
    font-weight: bold;
    color: #ffffff;
    margin: 2% 2%;
    font-size: 2em;
    text-align: center;
   
  }
h2{
    color: #eeeeee;
    font-family: mukta;
    font-size: 1.8em;
    padding: 1%;
    margin: 1%;
}

h3{
    padding: 3%;
    text-shadow:1px 1px 1px #9a9ca5; 
    margin: 0;
    font-family:ubuntu;
    font-size: 1.2em;
    color: #333;
}

h4{

    color: #0E2141;
    font-size: 1.5em;
}

.card-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
   
    justify-content: space-between;
    
  }
  
  .card {
    flex: 1 0 20%;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    margin: 3% 2% 3% 2% ;
    text-decoration: none; /* Remove underline for links */
    color: inherit; /* Inherit text color from parent */
    transition: all 400ms ease;
    padding: 0%;
    position: relative;
    
    align-items: center; /* Centra verticalmente los elementos hijos */
    justify-content: center; /* Centra horizontalmente los elementos hijos */
    
    
  }



  .card:hover{
    box-shadow: 14px 14px 20px rgb(0, 0, 0);
    transform: translateY(-3%);
    
    
  }

  
  
  .card img {
    margin-top: 10%;
    width: 30%;
    height: auto;
    object-fit: cover;
  }
  
  .card-content {
    padding: 2%;
    margin: 0 0 20% 0;
  }
  

  
  .card-content p {
    margin: 1% 0 0;
    padding: 5% 10%;
    font-size: 0.8em;
    color: #666;
  }

  .card-content ul li{
    font-family:play;
  }
 
  
  .card-content .decorada {
    list-style-type: none; /* Elimina los estilos de numeración/bullets predeterminados */
    padding: 5%; /* Elimina el relleno predeterminado de la lista */
  }
  
  .card-content .decorada li {
    background-color: #f0f0f0; /* Color de fondo para cada ítem */
    margin-bottom: 5px; /* Espacio entre ítems */
    padding: 10px; /* Relleno interno de cada ítem */
    border-radius: 5px; /* Bordes redondeados */
    font-size: 0.7em;
  }

  .card .cover {
    position: absolute;
    bottom:-100px;
    left: 0;
    border-style: solid;
    border-color: #b0b0b0;
    
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    
    width: 100%;
    height: 100px;
    background-color: rgba(0, 0, 0, 0.85); /* Color oscuro de fondo con opacidad */
    opacity: 0; /* Inicialmente oculto */
    transition: all 0.3s ease;
}
  
  .card .enlace {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,20px);
    opacity: 1;
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 70%;
}

.card:hover .cover {
    opacity: 1;
    transform: translateY(-100px);
}


.card:hover .enlace {
    opacity: 1;
    transform: translate(-50%, -40px);
}

.card span{
    width: 90%;
    
}

.normal{
    
    color: #697384;  
}

.normal:hover{
    color: #c4c4c4;
}
.menu-hamburguesa{

    display: none;
}


header button{
    
    
    padding: 10px 15px;
    border:none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    margin-left: 20px;
    color: rgb(168, 168, 168);
   

}

header .btn button {
    font-size: 5mm;
    padding: 10px 25px;
    
    color: rgb(255, 255, 255);
    background-color: rgb(37, 48, 81);
    
}


header .btn button:hover{ 

    background-color:#202a42 ;
    color:#ecf4ff ;
    transform: scale(1.1);
    
}



header .menu-hamburguesa {
    
}
header .menu-hamburguesa button{
   
    background-color:#EFEFEF ;
    padding: 0;
    margin: 10px;
    height: 40px;
  
}

header .menu-hamburguesa button:hover{
    transform: scale(1.1);
 
}


header .menu-hamburguesa button img{ 
    height: 40px;
}










/* Cambios en el por encima de los 800px */
@media screen and (min-width:800px){
    .contenedor-principal{
       /* display: flex;*/
    }

    .contenedor-medio {
        width: 50%;
    }

    .contenedor-contacto{
        font-size: 18px;
    }


}

/* Inicio barra de navegacion Nav*/
/* Cambios en el por debajo de los 800px */
@media screen and (max-width:800px){
    body{
        
         font-size: 15px;
        
    }
    .nav-links, .btn{
        display:none;
    }
    .menu-hamburguesa {
        display: inherit;
    }

    .contenedor-principal{
        display: block;
        
    }

    .contenedor-medio {
        width: 100%;
    }
    
    .contenedor-contacto{
        font-size: 12px;
    }

    h1{
        font-size: 2em;
    }

    h3{
        font-size: 1.8em;
    }

    p{
        font-size: 1em;
    }
    .card {
        flex: 1 0 40%;
    }
    .card-content p {
        font-size: 1.2em;
        
    }
    

    .card-content .decorada li {
      
        font-size: 0.9em;
      }
    .card .enlace {
      
        font-size: 0.9em;
    }
}


/* Cambios por debajo de los 500px */
@media screen and (max-width:500px){
    header nav{
        height: 60px;
    }
    header .logo img{
        height: 40px;
        width: auto; 
        
       
          
    }
    header .menu-hamburguesa button { 
        height: 30px;
    }
    header .menu-hamburguesa button img{ 
        height: 30px;
    }
    body{
        
         font-size: 1em;
        }

    .datosdecontacto p {
        text-align: left;
    }
    .logosredes img{
        width: 20px;
        margin: 5px;
    
    }

    .emails{
        width: 100%;
        
    }

    h1{
       
        margin: 2% 2%;
        font-size: 1.5em;
      }
      
      h2{
        margin: 3% 1%;
        font-size: 1.2em;
      }


      .galeriacriptos{
        
        margin: 50px 0% 0px 0%;
      
    }

    .card-content h3 {
        
        font-size: 1.5em;
        
      }
      
    .card {
        flex: 1 0 80%;
    }
    .card-content p {
        font-size: 1em;
    }
      .card .enlace {
        margin:0;
        font-size: 0.8em;
    }
    /*
    .card:hover .enlace {
      
        transform: translate(-50%,-200%);
    }*/
}


/* Cambios por encima de los 500px */
@media screen and (min-width:500px){
    .logosredes img{
        width: 50px;
        margin: 20px;
    }
    .emails{
        width: 50%;
        margin: auto;
    }
 
}

header a {
    text-decoration: none;
    margin: 0;
}

header .overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: #071628; 
    overflow: hidden;
    transition: all 0.3s ease 0s;
}

header .overlay .overlay-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
    

}

header .overlay a {
    padding: 15px;
    font-size: 36px;
    display:block;
    transition: all 0.3s ease 0s;
    font-weight: 700;
    width: 100%;
    
}

header .overlay a:hover,
header .overlay a:focus{
    
    transform: scale(1.1);
}

header .overlay .close {
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 65px;
    width: auto;
    
    
    
}

@media screen and(max-height:450px){
    
    header .overlay a {
        font-size: 20px;
    }

    .header .overlay .close{
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}
/* Fin barra de navegacion Nav*/



/* Start  styling the page */

.lienzo{
    width: 100%;
    height: 100%;
    
    

   /* opacity: 0.5;*/

    
   /* display:flex;*/

}

p{
    padding: 1% 1%;
    text-align: center;
}


.color-propiedades{
    background-color:#EFEFEF;
    color: #0E2141;
}

.color-inversiones{
    background-color: #0E2141;
    color: #EFEFEF;
}

.color-administracion{
    background-color:#E11C25;
    color: #EFEFEF;
}

.contenedor-principal{

    
    height: auto;
    
    color: #444;
    margin: 1% 0% 5% 0% ;
    padding: 1% ;
    
    
   
}





.contenedor-transparente{

  
    height: auto;
    background-color: #00000000;
    color: #ffffff;
    margin: 0px 2% 0px 2%;
  /* padding: 3% ;*/
   display: flex;
   flex-direction: column;
   text-align:left;
    /*align-items: center;*/
    justify-content: center;
    
}

.contenedor-transparente p {
    font-family:quatro ;
}


.contenedor-imagenesdetitulos{
    width: 100%;
    height: fit-content;
    display: flex;
   /* align-items: center;*/
    justify-content: center;
    

}
.contenedor-imagenesdetitulos img{
    width: 50%;
    height: auto;
}











.contenedor-contacto{
    height: auto;
    background-color: #e4e4e4;
    color: #0E2141;
  /*  margin: 20px auto;*/
   padding: 2% ;
  /* border-top: 1px groove #b8b8b8;*/
    object-fit: cover;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    
    
}



.datosdecontacto{
    padding: 2%;
    border-top: 1px groove #b8b8b8; 
    
    
}

.datosdecontacto p{
    text-align: center;
    padding: 2%;
    margin: 2%;
    
}



.redessociales{
    padding: 2%;
    border-top: 1px groove #b8b8b8; 
}
.logosredes img{
    
    transition: all ease-in-out 0.2s;
    
    filter: brightness(0%) grayscale(100%);

}

.logosredes img:hover{
    filter: brightness(0.9);

}

/* ALINEACION TEXTO */


footer {
    background: #242424;
    color: #0E2141;
    border-top: 4px solid #0E2141;
    
}

 footer .contenedor-pie p {
    padding: 25px 0;
    width: 85%;
    
    margin:auto;
    font-size:small;
    
}
.pie {
    text-align: center; 
    color: #EFEFEF;
}














