@charset "UTF-8";

.team-section {
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.differentials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.9));
    z-index: 1;
}

.team-section .container {
    position: relative;
    z-index: 2;
}

/* Cards */
.card.team-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.card.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-img-wrapper {
    height: 280px;
    overflow: hidden;
}

.card.team-card .card-img-top {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top center;

}

.card.team-card .card-body {
    padding: 25px;
}

.card.team-card h5 {
    font-weight: 600;
    font-size: 1.125rem;
}

.card.team-card p {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #888;
}

.card.team-card a {
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    color: #c49b66;
}

.card.team-card a:hover {
    text-decoration: underline;
}

/* ============================== */
/*    Textos Personalizados      */ 
/* ============================ */

.text-custom-team {
    color: var(--cor-clara);
    font-size: 2.5rem;
    font-weight: 700;
}