/* Flecha separadora */
.board-member-arrow {
    text-align: center;
    margin: 15px 0;
    font-size: 1.5rem;
    color: #333;
}
.board-member-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: none;
}

.main-member {    
    width: 80%;
    margin: 0 auto;
    background: rgb(249, 248, 248);
}

.board-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.board-member-role {
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--uc-primary-color);
    margin-bottom: 10px;
}

.board-member-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--uc-dark-color);
    margin: 0;
}

.board-member-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0c2b7c 0%, var(--uc-secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.board-member-content {
    display: flex;
    align-items: center;
}

.board-member-info {
    flex: 1;
}

.board-member-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--uc-secondary-color);
    margin: 40px 0 25px 0;
    padding-left: 15px;
    border-left: 4px solid #667eea;
}

.board-member-executive .board-member-role {
    color: var(--uc-primary-color);
}

.board-member-executive .board-member-name {
    color: var(--uc-accent-font);
}

.board-member-executive .board-member-icon {
    background: linear-gradient(135deg, #0a8b3d 0%, #0b572a 100%);
    border: 2px solid rgba(9, 92, 40, 0.3);
}

@media (max-width: 768px) {
    .board-member-section {
        padding: 40px 0;
    }

    .board-member-card {
        padding: 20px;
    }

    .board-member-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 15px;
    }

    .board-member-name {
        font-size: 1.1rem;
    }

    .board-member-subtitle {
        font-size: 1.2rem;
    }
}