.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 100px;
}

.project-description {
    text-align: center;
    max-width: 800px;
    margin-bottom: 40px;
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-left: 8px solid #ff914d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-subtitle {
    font-size: 1.5em;
    color: #3f6874;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-description:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.project-description h2 {
    font-size: 2.5em;
    color: #3f6874;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.project-description p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: left;
}

.project-description p:last-child {
    margin-bottom: 0;
}

.member-profile {
    text-align: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 6px solid #ff914d;
    transition: transform 0.3s ease-in-out;
}

.profile-photo:hover {
    transform: scale(1.1);
}

.member-profile h2 {
    font-size: 2em;
    color: #3f6874; 
    margin-bottom: 5px;
    
}

.member-profile p {
    font-size: 1.1em;
    color: #555;
    margin: 5px 0;
}

.icon-redesocial {
    display: flex;
    justify-content: center; 
    gap: 30px; 
    margin-top: 20px;
}

.social-item {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    text-align: center;
}

.social-item img {
    width: 50px; 
    height: 50px;
    margin-bottom: 5px; 
}

.social-item a {
    text-decoration: none;
    color: #555; 
    font-weight: 500;
    font-size: 0.9em;
    transition: color 0.3s ease-in-out;
}

.social-item a:hover {
    color: #ff914d;
}