.titulo-seccion {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    font-family: 'Montserrat', sans-serif;
    padding: 0 15%;
    box-sizing: border-box;
}
.conoce {
    margin-bottom: 0%;
    font-size: 6em;
    font-weight: 400;
    font-style: normal;
}
.nuestros {
    margin-top: 0%;
    margin-bottom: 0%;
    font-size: 6em;
    font-weight: 400;
    font-style: italic;
}
.proyectos {
    height: 6em;
    display: flex;
    align-items: center;
    gap: 40px;
}
.proyectos svg {
    fill: #000;
    transition: transform 0.3s ease;
    width: 4em;
    height: 4em;
}
.proyectos:hover svg {
    transform: translateY(5px);
}
.proyectos h2 {
    font-size: 6em;
    font-weight: 700;
    font-style: Bold;
}
/* ---- Responsive para la sección del titulo ---- */
@media (max-width: 900px) {
    .titulo-seccion {
        padding: 0 5%;
    }
    .conoce {
        font-size: 2.5em;
    }
    .nuestros {
        font-size: 2.5em;
    }
    .proyectos {
        height: 2.5em;
        gap: 10px;
    }
    .proyectos svg {
        width: 2em;
        height: 2em;
    }
    .proyectos h2 {
        font-size: 2.5em;
    }
}
/* ---- Sección de proyectos ---- */
.project-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-family: 'Montserrat', sans-serif;
    padding: 20px;
    margin-top: 70px;
}
.card {
    width: 32%; /* Para escritorio */
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
    background-color: rgb(245, 241, 237);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 20px;
}
.card:hover {
    transform: translateY(-5px);
}
.card img {
    width: 90%;
    height: auto;
    margin: 20px auto 20px;
    display: block;
}
.nombre, .descripcion {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.nombre {
    align-items: center;
    width: 40%;
    margin-top: 10px;
}
.descripcion {
    width: 60%;
}
.card h3, .card p, .card button {
    padding: 8px;
    text-align: center;
}
.card p {
    text-align: center;
    border-bottom: 0.5px solid #000;
    width: 70%;
    margin: 0 auto;
    font-size: 0.9em;
}
.card button {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 50px;
    font-size: 0.7em;
}
.card button:hover {
    background-color: #44444400;
    color: #000;
    border: 1px solid #000;
}
/* ---- Responsive para la sección de proyectos ---- */
@media (max-width: 900px) {
    .card {
        width: 100%; 
    }
}