@font-face {

  font-family: 'Sk-Bold';
  src: url('../Fonts/Sk-Modernist-Bold.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
	
}

@font-face {

  font-family: 'Sk-Mono';
  src: url('../Fonts/Sk-Modernist-Mono.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
	
}

@font-face {

  font-family: 'Sk-Regular';
  src: url('../Fonts/Sk-Modernist-Regular.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
	
}


.quienes-somos {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
}

.encabezado h2 {
    font-size: 56px;
    text-align: center;
    color: #333;
    margin-bottom: 50px;
    font-weight: 700;
    color: #c52825; /* Acento en rojo */
	font-family: Sk-Bold;
}

.bloque {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
	  font-family: 'Sk-Regular';
}

.bloque img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
}

.bloque .texto {
    flex: 1;
    padding: 20px;
}

.bloque h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.bloque p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.historia {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
}

.mision-vision {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.enfoque {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
}

.bloque h3 strong {
    color: #c52825;
}

.quienes-somos .galeria {
    margin-top: 40px;
    padding: 20px;
    background-color: #fff;
}

.galeria h3 {
    font-size: 28px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.grid-galeria {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.grid-galeria .imagen img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.grid-galeria .imagen:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .grid-galeria {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .grid-galeria {
        grid-template-columns: 1fr;
    }
}




@media (max-width: 768px) {
    .bloque {
        flex-direction: column;
        align-items: flex-start;
    }

    .bloque .texto,
    .bloque img {
        width: 100%;
    }

    .encabezado h2 {
        font-size: 28px;
    }
}







