body {
    scroll-behavior: smooth;
    background: rgb(255, 255, 255);
}

footer.footer-custom {
    background: #ffffff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

footer.footer-custom .logo {
    width: 150px;
    height: auto;
}

footer.footer-custom .copy {
    margin: 0;
    color: black;
}

.team-member {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

    width: 100%;
    min-height: 180px;

    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-sizing: border-box;

    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.team-member-content {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.team-member-info {
    width: 100%;
    text-align: center;
    transition: padding 0.3s ease-out;
    overflow-wrap: break-word;
}

.team-member-links {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 200px;
    background-color: #f1f1f1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 20px;

    transform: translateX(100%);
    opacity: 0;

    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.team-member:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.team-member:hover .team-member-info {
    text-align: left;
    padding-right: 220px;
}

.team-member:hover .team-member-links {
    transform: translateX(0);
    opacity: 1;
}

.texto-desc {
    margin-top: 40px;
    margin-bottom: 10px;
    max-width: 900px;
}

.texto-desc h5 {
    line-height: 1.7;
    font-weight: 400;
    font-size: 1.1rem;
    color: #333; 
    font-family: "Inter", "Roboto", "Helvetica", sans-serif;
    letter-spacing: 0.3px; 
}