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

body {
    font-family: Arial, sans-serif;
    color: #333;
    font-size: 1.2rem;
    background-image: url(/img/fondo.jpg);
    background-size: cover;
}

a {
    text-decoration: none;
    color: blue;
}

/* Encabezado */
.header {
    background-color: #2f2f2f; /* Color de fondo más profundo */
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px 20px;
    position: sticky; /* Encabezado fijo */
    top: 0;
    z-index: 10;

}

.header img{
    width: 100px;
    height: 100px; /* Ajustar tamaño del logotipo */
    margin-right: 20px;
}

.header button{
    width: 130px;
    height: 75px;
    background: #f8f9fa;
    color: #42393b;
    text-align: center;
    border-radius: 8px;
}
.header a{
    color: #2f2f2f;

}

.header button:hover{
    transform: scale(1.1);
    background: #7b8487;
    transition: transform 0.3s ease
}
.img{
    width: 480px;
    height: 300px;
    border-radius: 8px;
}

.img:hover{
    transform: scale(1.1);
    transition: transform 0.3s ease;

}
.parrafo{
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;  
  font-size: 1.2rem;
  color: white;
text-decoration: none;

}
.parrafo:hover{
    color: white;
    transition: transform 0.3s ease
}


.texto{
    height: 160px;
    width: 880px;
    border-radius: 2px solid;
    background-color: #b3b3b3;
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    text-align: center;
    font-size: 1.2rem;
    /* box-shadow: 10px 10px 5px 12px lightblue; */
}
.texto:hover{
    transform: scale(1.2);
    transition: transform 0.3s ease
}

.contenedor{
    display: flex;
    border-radius: 2em solid black;
    max-width: auto;
    text-align: center;
    justify-content: space-between;
    align-content: center;

}
.contenedor1{
    height: 450px;
    width: 500px;
    background-color: #b3b3b3;
    border-radius: 2px solid;
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    text-align: center;
    font-size: 1.2rem;
}
    /* .contenedor1:hover{
        transform: scale(1.2);
    } */
    

.item {

    width: 100px;
    margin: 10px;
    border: 2px solid;
    text-align: center;
    line-height: 25px;
    font-size: 25px;
    transform: scale(1.2);
}


.img2{
    mix-blend-mode: multiply;
}

.pie{
    background-color: #95a6a7   ;
}

.contenedor2{
    height: 350px;
    width: 480px;
    background-color: #f8f9fa;
    border-radius: 2px solid;
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    text-align: center;
    font-size: 1.2rem;
}

.maincontainer{
    display: flex;
    height: 400px;
    width: auto;
    text-align: center;
    justify-content: space-between;
    align-content: center;
    
}

.card-foto {
    display: inline-block;
    width: 600px;
    padding: 1rem;
    margin: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.card-foto img {
    width: 100%;
    border-radius: 8px;
}

.card-foto:hover{
    transform: scale(0.9);
    transition: transform 0.3s ease
}

.ubi{
    background: #2f2f2f;
    color: white;
    height: 100px;
    width: 1300px;
    border-radius: 8px;
}

.col-4{
    width: 33.33333333%;
}
.filas{
    position: relative;
    margin: auto;
    width: 100%;
    height: auto;
    clear: both;

}