*{
    margin: 0;
    padding: 0;
}

body{
   
    background-size: cover;
    background-position: center;
    font-family: "Raleway", sans-serif;
    color: #000000;
}

.header {
    width: 100%;
    height: 60px;
    position: fixed;
    background-color: #ffffff;
    display: flex;
    flex-direction:row;
    z-index: 1000;  
}

.container {
    justify-content:space-around;
    align-items: center;
    width: 100%;

    display: flex;
    align-items: center;
}

.mosaic {
    width: 70%;
    text-align: center;
    margin: 0 auto 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .mosaic img {
    cursor: pointer;
    margin: 5px;
    width: 300px;
  
    transition: transform 0.3s ease;
  }

  .blur {
    filter: blur(5px); /* Aplica el efecto de desenfoque */
  }
  
  .enlarged {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(2); /* Centra y agranda la imagen */
    z-index: 9999; /* Asegura que la imagen agrandada esté por encima del resto del contenido */
  }
  
  .close-button {
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
  }



.textos-graf{

    width: 50%;
    margin: 10vh auto 5vh;
    text-align: center;
}

.textos-graf a{
    text-decoration: none;
    border: 1px solid #ccc;
    padding: 10px;
    margin: 10px;
    color: #000000;
    border-radius: 10px;
}

.textos-graf a:hover{
    color: #ffffff;
    background: #109c00;
}


/* footer */


footer {
    margin: auto;
    overflow: hidden;
    color: #023c00;
    font-family: "Raleway", sans-serif;
    background-color: #f9f9f9;
  }
  
  
  
  .contenedor-footer {
    padding: 20px;
    display: flex;
    align-items: center; 
    justify-content: space-evenly;
  
  }
  
  .content-section{
    
    text-align: center;
    margin: 0;
  }
 
  .content-section img{
    width: 50%;
    height: auto;
    margin: 0;
  }

  .content-section p{ 
    margin-top: 5px;
    font-size: 20px;
    
  }
  .content-section h1{

    font-size: 15px;
  }
  
  .content-section a{		
    color: #023c00;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-decoration: none;

    font-size: 15px;

  }

  .content-section a:hover{		
    text-decoration: underline;

  }

  .loguitos{
    border-top: 1px solid #ccc;
  }

  .loguitos img{
    
    text-align: center;
    align-items: center;
    width: 8%;
    
  }

  .section-2 {
    
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    padding: 20px; 
}

.section-2 img {
    justify-self: center;
    width: 70%;
    height: auto; 
    display: block;
}

  .section-3{
    padding: 10px;
    border-left: 1px solid#ccc;
    text-align: left;
  }

  .marca{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }


  .marca img {
    justify-self: center;
    width: 120px;
  }
  

  .marca img:hover{
    transform: scale(1.1);
  }