.container-column h1{
    text-align: center;
    margin-bottom: 20px;
}

.projects-row-wrap {
    display: flex;
    flex-direction:column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

/* TARJETA */
.project {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* IMAGEN */
.project img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background-color: #f9f9f9;
   
}

/* CONTENIDO */
.project h1 {
    font-size: 20px;
    margin: 15px 20px 5px;
}

.project p {
    font-size: 15px;
    margin: 0 20px 20px;
    flex-grow: 1;
}

/* BOTÓN */
.project button {
    margin: 0 20px 20px;
    padding: 12px;
    background-color: #111;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.project button a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: block;
}

/* HOVER */
.project:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.project button:hover {
    background-color: #00c3ff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .project {
        width: 100%;
        max-width: 360px;
    }
}
